xref: /freebsd/sys/sys/ck.h (revision 190cef3d)
1 /*
2  * $FreeBSD$
3  */
4 #ifdef _KERNEL
5 #include <ck_queue.h>
6 #include <ck_epoch.h>
7 #else
8 #include <sys/queue.h>
9 #define CK_STAILQ_HEAD STAILQ_HEAD
10 #define CK_STAILQ_ENTRY STAILQ_ENTRY
11 #define CK_LIST_HEAD LIST_HEAD
12 #define CK_LIST_ENTRY LIST_ENTRY
13 #endif
14