Changeset 872 for trunk/src/emx/include/sys/fmutex.h
- Timestamp:
- Nov 23, 2003, 3:41:33 AM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/emx/include/sys/fmutex.h
-
Property cvs2svn:cvs-rev
changed from
1.1
to1.2
r871 r872 34 34 typedef struct 35 35 { 36 unsigned long hev; /* HEV */ 37 __volatile__ signed char fs; /* Status */ 36 /** Handle to event semaphore. */ 37 unsigned long hev; 38 /** Semaphore status. */ 39 __volatile__ signed char fs; 40 /** Semaphore create flags. (_FMC_SHARED) */ 41 unsigned char flags; 42 /** padding the struct to 8 bytes. */ 43 unsigned char padding[2]; 38 44 } _fmutex; 39 45 #pragma pack() -
Property cvs2svn:cvs-rev
changed from
Note:
See TracChangeset
for help on using the changeset viewer.