os/source/common/inc/primitive.h
00029: typedef unsigned int u32_t;
00047: // for statistic
00048: typedef u32_t statistic_t;
os/source/timer/v3/src/timer.c
00067: typedef struct
00068: {
00069:
dll_t dll_;
00070:
statistic_t hit_;
00071:
statistic_t redo_;
00072:
csize_t reentrance_;
00073:
csize_t level_;
00074: } bucket_t;
00075:
00076: typedef struct
00077: {
00078:
statistic_t notimer_;
00079:
statistic_t traversed_;
00080:
statistic_t abnormal_;
00081: } timer_statistic_t;
00082:
00088: static bucket_t g_buckets [MAX_BUCKETS];
00089: static timer_statistic_t g_statistic;