]> git.saurik.com Git - apple/xnu.git/blobdiff - bsd/sys/select.h
xnu-4903.241.1.tar.gz
[apple/xnu.git] / bsd / sys / select.h
index a4c33d0c891e6e2df5bffdcd6c2f6bb65d8df25a..1fa3f7605e2176567ceeb50dbc8cafe63569192f 100644 (file)
 #endif /* (!_POSIX_C_SOURCE || _DARWIN_C_SOURCE) */
 
 #ifdef KERNEL
-#ifdef KERNEL_PRIVATE
-#include <kern/wait_queue.h>
-#endif
 #include <sys/kernel_types.h>
-
+#include <kern/waitq.h>
 #include <sys/event.h>
 
 /*
  */
 #ifdef KERNEL_PRIVATE
 struct selinfo {
-       struct  wait_queue si_wait_queue;       /* wait_queue for wait/wakeup */
-       struct klist si_note;           /* JMM - temporary separation */
+       struct  waitq si_waitq;         /* waitq for wait/wakeup */
+       struct  klist si_note;          /* JMM - temporary separation */
        u_int   si_flags;               /* see below */
 };