00001
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #if !defined(__sys_critsec_h__)
00029 #define __sys_critsec_h__
00030
00031 #if defined(__cplusplus)
00032 extern "C" {
00033 #endif // __cplusplus
00034
00035 #include <config.h>
00036 #include <atomic.h>
00037
00038 #if defined(CONF_TM)
00039 extern atomic_t kernel_critsec_count;
00040 #define INITIALIZE_KERNEL_CRITICAL_SECTION() kernel_critsec_count=0
00041 #define ENTER_KERNEL_CRITICAL_SECTION() atomic_inc(&kernel_critsec_count)
00042 #define LEAVE_KERNEL_CRITICAL_SECTION() atomic_dec(&kernel_critsec_count)
00043 #define DESTROY_KERNEL_CRITICAL_SECTION()
00044 #else // CONF_TM
00045 #define INITIALIZE_KERNEL_CRITICAL_SECTION()
00046 #define ENTER_KERNEL_CRITICAL_SECTION()
00047 #define LEAVE_KERNEL_CRITICAL_SECTION()
00048 #define DESTROY_KERNEL_CRITICAL_SECTION()
00049 #endif // CONF_TM
00050
00051 #if defined(__cplusplus)
00052 }
00053 #endif // __cplusplus
00054
00055 #endif // __sys_critsec_h__
00056