home *** CD-ROM | disk | FTP | other *** search
/ Magazyn Amiga 14 / MA_Cover_14.iso / source / e / powerd / modules.lha / modules / exec / semaphores.m < prev    next >
Encoding:
Text File  |  1999-06-23  |  318 b   |  27 lines

  1. MODULE    'exec/nodes',
  2.             'exec/ports'
  3.  
  4. OBJECT SSR
  5.     MLN:MLN,
  6.     Waiter:PTR TO TC
  7.  
  8. OBJECT SS
  9.     LN:LN,
  10.     NestCount:INT,
  11.     WaitQueue:MLH,
  12.     MultipleLink:SSR,
  13.     Owner:PTR TO TC,
  14.     QueueCount:INT
  15.  
  16. OBJECT SemaphoreMessage
  17.     MN:MN,
  18.     Semaphore:PTR TO SS
  19.  
  20. OBJECT SM
  21.     MP:MP,
  22.     Bids:INT
  23.  
  24. CONST    SM_LOCKMSG=16,
  25.         SM_SHARED=1,
  26.         SM_EXCLUSIVE=0
  27.