summaryrefslogtreecommitdiffstats
path: root/docs/nspr/reference/prthreadstack.rst
blob: 374ac3ac07733536e43d104e5b6e63445d6f0a23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
PRThreadStack
=============

.. container:: blockIndicator obsolete obsoleteHeader

   | **Obsolete**
   | This feature is obsolete. Although it may still work in some
     browsers, its use is discouraged since it could be removed at any
     time. Try to avoid using it.

The opaque :ref:`PRThreadStack` structure is only used in the third
argument "``PRThreadStack *stack``" to the :ref:`PR_AttachThread` function.
The '``stack``' argument is now obsolete and ignored by
:ref:`PR_AttachThread`. You should pass ``NULL`` as the 'stack' argument to
:ref:`PR_AttachThread`.

.. _Definition:

Syntax
------

.. code::

   #include <prthread.h>

   typedef struct PRThreadStack PRThreadStack;

.. _Definition_2:


-