tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

prthreadstack.rst (714B)


      1 PRThreadStack
      2 =============
      3 
      4 .. container:: blockIndicator obsolete obsoleteHeader
      5 
      6   | **Obsolete**
      7   | This feature is obsolete. Although it may still work in some
      8     browsers, its use is discouraged since it could be removed at any
      9     time. Try to avoid using it.
     10 
     11 The opaque :ref:`PRThreadStack` structure is only used in the third
     12 argument "``PRThreadStack *stack``" to the :ref:`PR_AttachThread` function.
     13 The '``stack``' argument is now obsolete and ignored by
     14 :ref:`PR_AttachThread`. You should pass ``NULL`` as the 'stack' argument to
     15 :ref:`PR_AttachThread`.
     16 
     17 .. _Definition:
     18 
     19 Syntax
     20 ------
     21 
     22 .. code::
     23 
     24   #include <prthread.h>
     25 
     26   typedef struct PRThreadStack PRThreadStack;
     27 
     28 .. _Definition_2:
     29 
     30 
     31 -