summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-02-08 22:16:35 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-02-08 22:16:35 +0000
commitf3dabb0439c8788ecb16536054728e36778c462a (patch)
treebbb72726fa8eae4da8c462913b25360fd9e1bef3 /cpukit/rtems
parentalignment on workspace changed from CPU_ALIGNMENT to CPU_HEAP_ALIGNMENT (diff)
downloadrtems-f3dabb0439c8788ecb16536054728e36778c462a.tar.bz2
changed synchronization algorithm to be a single list of enumerated states
Diffstat (limited to 'cpukit/rtems')
-rw-r--r--cpukit/rtems/include/rtems/rtems/event.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/rtems/include/rtems/rtems/event.h b/cpukit/rtems/include/rtems/rtems/event.h
index 0c8ab2190e..6ae6bcee5c 100644
--- a/cpukit/rtems/include/rtems/rtems/event.h
+++ b/cpukit/rtems/include/rtems/rtems/event.h
@@ -48,6 +48,7 @@ extern "C" {
*/
typedef enum {
+ EVENT_SYNC_SYNCHRONIZED,
EVENT_SYNC_NOTHING_HAPPENED,
EVENT_SYNC_TIMEOUT,
EVENT_SYNC_SATISFIED
@@ -153,12 +154,11 @@ void _Event_Timeout (
);
/*
- * The following defines the synchronization flags used by the
+ * The following defines the synchronization flag used by the
* Event Manager to insure that signals sent to the currently
* executing thread are received properly.
*/
-EXTERN volatile boolean _Event_Sync;
EXTERN volatile Event_Sync_states _Event_Sync_state;
#include <rtems/rtems/eventmp.h>