]> git.saurik.com Git - apple/libdispatch.git/blob - src/firehose/firehose_internal.h
libdispatch-913.30.4.tar.gz
[apple/libdispatch.git] / src / firehose / firehose_internal.h
1 /*
2 * Copyright (c) 2015 Apple Inc. All rights reserved.
3 *
4 * @APPLE_APACHE_LICENSE_HEADER_START@
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 *
18 * @APPLE_APACHE_LICENSE_HEADER_END@
19 */
20
21 #ifndef __FIREHOSE_INTERNAL__
22 #define __FIREHOSE_INTERNAL__
23
24 #if OS_FIREHOSE_SPI
25
26 // make sure this is defined so that we get MIG_SERVER_DIED when a send once
27 // notification is sent back because of a crashed server
28 #ifndef __MigTypeCheck
29 #define __MigTypeCheck 1
30 #endif
31
32 #define fcp_quarntined fcp_quarantined
33
34 #include <limits.h>
35 #include <machine/endian.h>
36 #include <mach/mach_types.h>
37 #include <mach/std_types.h>
38 #include <os/object.h>
39 #include <firehose/private.h>
40 #include <mach/mach_types.h>
41 #include <mach/std_types.h>
42 #include <sys/qos.h>
43
44 #include "os/firehose_server_private.h"
45 #include "firehose_buffer_internal.h"
46 #ifdef FIREHOSE_SERVER
47 #include "firehose_server_internal.h"
48 #endif
49 #include "firehose_inline_internal.h"
50
51 #endif // OS_FIREHOSE_SPI
52
53 #endif // __FIREHOSE_INTERNAL__