8e61308048
as their queue.h equivalents if !_KERNEL
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
|