00001 #ifndef _CMI_QUEUE_DECL_H
00002 #define _CMI_QUEUE_DECL_H
00003
00004 #if SPECIFIC_PCQUEUE && CMK_SMP
00005 #define CMIQueue LRTSQueue
00006 #define CMIQueuePush LRTSQueuePush
00007 #define CMIQueueCreate LRTSQueueCreate
00008 #define CMIQueuePop LRTSQueuePop
00009 #define CMIQueueEmpty LRTSQueueEmpty
00010 #else
00011 #define CMIQueue PCQueue
00012 #define CMIQueuePush PCQueuePush
00013 #define CMIQueueCreate PCQueueCreate
00014 #define CMIQueuePop PCQueuePop
00015 #define CMIQueueEmpty PCQueueEmpty
00016 #endif
00017
00018 #endif