]>
git.saurik.com Git - apple/system_cmds.git/blob - lskq.tproj/common.h
2 * Copyright (c) 2015 Apple Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
24 #ifndef _LSKQ_COMMON_H_
25 #define _LSKQ_COMMON_H_
28 * This file must be kept in sync with xnu headers
34 #define KN_ACTIVE 0x0001
35 #define KN_QUEUED 0x0002
36 #define KN_DISABLED 0x0004
37 #define KN_DROPPING 0x0008
38 #define KN_USEWAIT 0x0010
39 #define KN_ATTACHING 0x0020
40 #define KN_STAYACTIVE 0x0040
41 #define KN_DEFERDELETE 0x0080
42 #define KN_ATTACHED 0x0100
43 #define KN_DISPATCH 0x0200
44 #define KN_UDATA_SPECIFIC 0x0400
45 #define KN_SUPPRESSED 0x0800
46 #define KN_STOLENDROP 0x1000
47 #define KN_REQVANISH 0x2000
48 #define KN_VANISHED 0x4000
58 #define KQ_KEV_QOS 0x20
60 #define KQ_WORKLOOP 0x80
102 * bsd/sys/event.h: EVFILT_*
127 * bsd/sys/proc_info.h: PROX_FDTYPE_*
145 #endif /* _LSKQ_COMMON_H_ */