fixed build error
[platform/upstream/gcd.git] / dispatch-1.0 / dispatch / dispatch.h
1 /*
2  * Copyright (c) 2008-2009 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 __DISPATCH_PUBLIC__
22 #define __DISPATCH_PUBLIC__
23
24 #ifdef __APPLE__
25 #include <Availability.h>
26 #include <TargetConditionals.h>
27 #endif
28 #if HAVE_SYS_CDEFS_H
29 #include <sys/cdefs.h>
30 #endif
31 #include <stddef.h>
32 #include <stdint.h>
33 #include <stdbool.h>
34 #include <stdarg.h>
35 #if HAVE_UNISTD_H
36 #ifdef __BLOCKS__
37 #undef __block
38 #endif
39 #include <unistd.h>
40 #ifdef __BLOCKS__
41 #define __block __attribute__((__blocks__(byref)))
42 #endif
43 #endif
44
45 #if defined(__cplusplus)
46 #define __DISPATCH_BEGIN_DECLS  extern "C" {
47 #define __DISPATCH_END_DECLS    }
48 #else
49 #define __DISPATCH_BEGIN_DECLS
50 #define __DISPATCH_END_DECLS
51 #endif
52
53 #ifndef __OSX_AVAILABLE_STARTING
54 #define __OSX_AVAILABLE_STARTING(x, y)
55 #endif
56
57 #define DISPATCH_API_VERSION 20090501
58
59 #ifndef __DISPATCH_BUILDING_DISPATCH__
60
61 #ifndef __DISPATCH_INDIRECT__
62 #define __DISPATCH_INDIRECT__
63 #endif
64
65 #include <dispatch/base.h>
66 #include <dispatch/object.h>
67 #include <dispatch/time.h>
68 #include <dispatch/queue.h>
69 #include <dispatch/source.h>
70 #include <dispatch/group.h>
71 #include <dispatch/semaphore.h>
72 #include <dispatch/once.h>
73
74 #undef __DISPATCH_INDIRECT__
75
76 #endif /* !__DISPATCH_BUILDING_DISPATCH__ */
77
78 #endif