00001
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef _RTEMS_SCORE_THREAD_SYNC_H
00021 #define _RTEMS_SCORE_THREAD_SYNC_H
00022
00031 #ifdef __cplusplus
00032 extern "C" {
00033 #endif
00034
00039 typedef enum {
00040 THREAD_BLOCKING_OPERATION_SYNCHRONIZED,
00041 THREAD_BLOCKING_OPERATION_NOTHING_HAPPENED,
00042 THREAD_BLOCKING_OPERATION_TIMEOUT,
00043 THREAD_BLOCKING_OPERATION_SATISFIED
00044 } Thread_blocking_operation_States;
00045
00046
00047
00048
00049
00050
00051 #ifdef __cplusplus
00052 }
00053 #endif
00054
00057 #endif
00058