Changeset 7f6fab6 in rtems
- Timestamp:
- 12/01/95 19:28:52 (28 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- a8cd94a
- Parents:
- eedbfd9
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/rtems/headers/event.h
reedbfd9 r7f6fab6 42 42 43 43 #define EVENT_CURRENT 0 44 45 /* 46 * The following enumerated types indicate what happened while the event 47 * manager was in the synchronization window. 48 */ 49 50 typedef enum { 51 EVENT_SYNC_NOTHING_HAPPENED, 52 EVENT_SYNC_TIMEOUT, 53 EVENT_SYNC_SATISFIED 54 } Event_Sync_states; 55 44 56 45 57 /* … … 143 155 144 156 /* 145 * The following defines the synchronization flag used by the157 * The following defines the synchronization flags used by the 146 158 * Event Manager to insure that signals sent to the currently 147 159 * executing thread are received properly. 148 160 */ 149 161 150 EXTERN boolean _Event_Sync; /* event manager sync flag */ 162 EXTERN volatile boolean _Event_Sync; 163 EXTERN volatile Event_Sync_states _Event_Sync_state; 151 164 152 165 #include <rtems/rtems/eventmp.h> -
c/src/exec/rtems/include/rtems/rtems/event.h
reedbfd9 r7f6fab6 42 42 43 43 #define EVENT_CURRENT 0 44 45 /* 46 * The following enumerated types indicate what happened while the event 47 * manager was in the synchronization window. 48 */ 49 50 typedef enum { 51 EVENT_SYNC_NOTHING_HAPPENED, 52 EVENT_SYNC_TIMEOUT, 53 EVENT_SYNC_SATISFIED 54 } Event_Sync_states; 55 44 56 45 57 /* … … 143 155 144 156 /* 145 * The following defines the synchronization flag used by the157 * The following defines the synchronization flags used by the 146 158 * Event Manager to insure that signals sent to the currently 147 159 * executing thread are received properly. 148 160 */ 149 161 150 EXTERN boolean _Event_Sync; /* event manager sync flag */ 162 EXTERN volatile boolean _Event_Sync; 163 EXTERN volatile Event_Sync_states _Event_Sync_state; 151 164 152 165 #include <rtems/rtems/eventmp.h> -
cpukit/rtems/include/rtems/rtems/event.h
reedbfd9 r7f6fab6 42 42 43 43 #define EVENT_CURRENT 0 44 45 /* 46 * The following enumerated types indicate what happened while the event 47 * manager was in the synchronization window. 48 */ 49 50 typedef enum { 51 EVENT_SYNC_NOTHING_HAPPENED, 52 EVENT_SYNC_TIMEOUT, 53 EVENT_SYNC_SATISFIED 54 } Event_Sync_states; 55 44 56 45 57 /* … … 143 155 144 156 /* 145 * The following defines the synchronization flag used by the157 * The following defines the synchronization flags used by the 146 158 * Event Manager to insure that signals sent to the currently 147 159 * executing thread are received properly. 148 160 */ 149 161 150 EXTERN boolean _Event_Sync; /* event manager sync flag */ 162 EXTERN volatile boolean _Event_Sync; 163 EXTERN volatile Event_Sync_states _Event_Sync_state; 151 164 152 165 #include <rtems/rtems/eventmp.h>
Note: See TracChangeset
for help on using the changeset viewer.