tor-browser

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

pr_destroycondvar.rst (460B)


      1 PR_DestroyCondVar
      2 =================
      3 
      4 Destroys a condition variable.
      5 
      6 
      7 Syntax
      8 ------
      9 
     10 .. code::
     11 
     12   #include <prcvar.h>
     13 
     14   void PR_DestroyCondVar(PRCondVar *cvar);
     15 
     16 
     17 Parameter
     18 ~~~~~~~~~
     19 
     20 :ref:`PR_DestroyCondVar` has one parameter:
     21 
     22 ``cvar``
     23   A pointer to the condition variable object to be destroyed.
     24 
     25 
     26 Description
     27 -----------
     28 
     29 Before calling :ref:`PR_DestroyCondVar`, the caller is responsible for
     30 ensuring that the condition variable is no longer in use.