]>
Commit | Line | Data |
---|---|---|
1c79356b A |
1 | /* |
2 | * Copyright (c) 2000 Apple Computer, Inc. All rights reserved. | |
3 | * | |
4 | * @APPLE_LICENSE_HEADER_START@ | |
5 | * | |
43866e37 | 6 | * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved. |
1c79356b | 7 | * |
43866e37 A |
8 | * This file contains Original Code and/or Modifications of Original Code |
9 | * as defined in and that are subject to the Apple Public Source License | |
10 | * Version 2.0 (the 'License'). You may not use this file except in | |
11 | * compliance with the License. Please obtain a copy of the License at | |
12 | * http://www.opensource.apple.com/apsl/ and read it before using this | |
13 | * file. | |
14 | * | |
15 | * The Original Code and all software distributed under the License are | |
16 | * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER | |
1c79356b A |
17 | * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, |
18 | * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, | |
43866e37 A |
19 | * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. |
20 | * Please see the License for the specific language governing rights and | |
21 | * limitations under the License. | |
1c79356b A |
22 | * |
23 | * @APPLE_LICENSE_HEADER_END@ | |
24 | */ | |
25 | /* | |
26 | * Copyright (C) Apple Computer 1998 | |
27 | * ALL Rights Reserved | |
28 | */ | |
29 | /* | |
30 | * This file represents the interfaces that used to come | |
31 | * from creating the user headers from the mach.defs file. | |
32 | * Because mach.defs was decomposed, this file now just | |
33 | * wraps up all the new interface headers generated from | |
34 | * each of the new .defs resulting from that decomposition. | |
35 | */ | |
36 | #ifndef _MACH_INTERFACE_H_ | |
37 | #define _MACH_INTERFACE_H_ | |
38 | ||
39 | #include <mach/clock.h> | |
40 | #include <mach/clock_priv.h> | |
41 | #include <mach/clock_reply_server.h> | |
42 | #include <mach/exc_server.h> | |
43 | #include <mach/host_priv.h> | |
44 | #include <mach/host_security.h> | |
45 | #include <mach/ledger.h> | |
46 | #include <mach/lock_set.h> | |
47 | #include <mach/mach_host.h> | |
48 | #include <mach/mach_port.h> | |
49 | #include <mach/memory_object_server.h> | |
50 | #include <mach/memory_object_default_server.h> | |
51 | #include <mach/memory_object_control.h> | |
52 | #include <mach/memory_object_name.h> | |
53 | #include <mach/notify_server.h> | |
54 | #include <mach/processor.h> | |
55 | #include <mach/processor_set.h> | |
56 | #include <mach/semaphore.h> | |
57 | #include <mach/task.h> | |
58 | #include <mach/thread_act.h> | |
59 | #include <mach/vm_map.h> | |
60 | ||
61 | #endif /* _MACH_INTERFACE_H_ */ | |
62 | ||
63 |