home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_08_11 / 8n11036a < prev    next >
Text File  |  1990-09-19  |  1KB  |  66 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.          Semaphore API for synchronization/resource control
  8.  
  9.          DosRequestSem       Request ownership of a semaphore
  10.          DosClearSem         Relinquish semaphore ownership
  11.  
  12.          Semaphore API for event signaling
  13.  
  14.          DosSemSet           Unconditionally set a semaphore
  15.          DosSemClear         Unconditionally clear a semaphore
  16.          DosSemWait          Wait on a semaphore to be cleared
  17.          DosSemSetWait       Set a semaphore and then wait until it
  18.                              is cleared by another process/thread
  19.          DosMuxSemWait       Wait for one of several semaphores to
  20.                              be cleared
  21.  
  22.          Semaphore API for use with Fast-Safe RAM Semaphores
  23.  
  24.          DosFSRamSemRequest  Request ownership of a Fast-Safe
  25.                              RAM Semaphore
  26.          DosFSRamSemClear    Release ownership of a Fast-Safe
  27.                              RAM Semaphore
  28.  
  29.          Semaphore API for accessing System Semaphores
  30.  
  31.          DosCreateSem        Create a system semaphore
  32.          DosOpenSem          Request access to an existing system
  33.                              semaphore
  34.          DosCloseSem         Close a system semaphore
  35.  
  36.  
  37.  
  38.  
  39.  
  40.  
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.