Tizen 2.1 base
[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 #include <unistd.h>
37 #endif
38
39 #if defined(__cplusplus)
40 #define __DISPATCH_BEGIN_DECLS  extern "C" {
41 #define __DISPATCH_END_DECLS    }
42 #else
43 #define __DISPATCH_BEGIN_DECLS
44 #define __DISPATCH_END_DECLS
45 #endif
46
47 #ifndef __OSX_AVAILABLE_STARTING
48 #define __OSX_AVAILABLE_STARTING(x, y)
49 #endif
50
51 #define DISPATCH_API_VERSION 20090501
52
53 #ifndef __DISPATCH_BUILDING_DISPATCH__
54
55 #ifndef __DISPATCH_INDIRECT__
56 #define __DISPATCH_INDIRECT__
57 #endif
58
59 #include <dispatch/base.h>
60 #include <dispatch/object.h>
61 #include <dispatch/time.h>
62 #include <dispatch/queue.h>
63 #include <dispatch/source.h>
64 #include <dispatch/group.h>
65 #include <dispatch/semaphore.h>
66 #include <dispatch/once.h>
67
68 #undef __DISPATCH_INDIRECT__
69
70 #endif /* !__DISPATCH_BUILDING_DISPATCH__ */
71
72 #endif