tor-browser

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

pr_closesharedmemory.rst (384B)


      1 PR_CloseSharedMemory
      2 ====================
      3 
      4 Closes a shared memory segment identified by name.
      5 
      6 
      7 Syntax
      8 ------
      9 
     10 .. code::
     11 
     12   #include <prshm.h>
     13 
     14   NSPR_API( PRStatus )
     15     PR_CloseSharedMemory(
     16        PRSharedMemory *shm
     17   );
     18 
     19 
     20 Parameter
     21 ~~~~~~~~~
     22 
     23 The function has these parameter:
     24 
     25 shm
     26   The handle returned from :ref:`PR_OpenSharedMemory`.
     27 
     28 
     29 Returns
     30 ~~~~~~~
     31 
     32 :ref:`PRStatus`.