mirror of https://github.com/F-Stack/f-stack.git
14 lines
251 B
C
14 lines
251 B
C
|
/*
|
||
|
* $FreeBSD$
|
||
|
*/
|
||
|
#ifdef _KERNEL
|
||
|
#include <ck_queue.h>
|
||
|
#include <ck_epoch.h>
|
||
|
#else
|
||
|
#include <sys/queue.h>
|
||
|
#define CK_STAILQ_HEAD STAILQ_HEAD
|
||
|
#define CK_STAILQ_ENTRY STAILQ_ENTRY
|
||
|
#define CK_LIST_HEAD LIST_HEAD
|
||
|
#define CK_LIST_ENTRY LIST_ENTRY
|
||
|
#endif
|