]>
Commit | Line | Data |
---|---|---|
de355530 | 1 | /* |
8f6c56a5 | 2 | * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ |
8ad349bb | 3 | * |
8f6c56a5 A |
4 | * This file contains Original Code and/or Modifications of Original Code |
5 | * as defined in and that are subject to the Apple Public Source License | |
6 | * Version 2.0 (the 'License'). You may not use this file except in | |
7 | * compliance with the License. The rights granted to you under the License | |
8 | * may not be used to create, or enable the creation or redistribution of, | |
9 | * unlawful or unlicensed copies of an Apple operating system, or to | |
10 | * circumvent, violate, or enable the circumvention or violation of, any | |
11 | * terms of an Apple operating system software license agreement. | |
12 | * | |
13 | * Please obtain a copy of the License at | |
14 | * http://www.opensource.apple.com/apsl/ and read it before using this file. | |
15 | * | |
16 | * The Original Code and all software distributed under the License are | |
17 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
18 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, | |
19 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
20 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. | |
21 | * Please see the License for the specific language governing rights and | |
43866e37 | 22 | * limitations under the License. |
8f6c56a5 A |
23 | * |
24 | * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ | |
de355530 | 25 | */ |
de355530 | 26 | |
55e303ae | 27 | /* |
e5568f75 | 28 | * Interface definition for the audit logging facility. |
55e303ae | 29 | */ |
de355530 | 30 | |
e5568f75 A |
31 | subsystem |
32 | #if KERNEL_USER | |
33 | KernelUser | |
34 | #endif /* KERNEL_USER */ | |
35 | audit_triggers 123; | |
36 | ||
37 | #include <mach/std_types.defs> | |
38 | #include <mach/mach_types.defs> | |
39 | ||
40 | simpleroutine audit_triggers( | |
41 | audit_port : mach_port_t; | |
42 | in flags : int); | |
de355530 | 43 |