]>
git.saurik.com Git - apple/libdispatch.git/blob - dispatch/base.h
2 * Copyright (c) 2008-2011 Apple Inc. All rights reserved.
4 * @APPLE_APACHE_LICENSE_HEADER_START@
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
10 * http://www.apache.org/licenses/LICENSE-2.0
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.
18 * @APPLE_APACHE_LICENSE_HEADER_END@
21 #ifndef __DISPATCH_BASE__
22 #define __DISPATCH_BASE__
24 #ifndef __DISPATCH_INDIRECT__
25 #error "Please #include <dispatch/dispatch.h> instead of this file directly."
29 #define DISPATCH_NORETURN __attribute__((__noreturn__))
30 #define DISPATCH_NOTHROW __attribute__((__nothrow__))
31 #define DISPATCH_NONNULL1 __attribute__((__nonnull__(1)))
32 #define DISPATCH_NONNULL2 __attribute__((__nonnull__(2)))
33 #define DISPATCH_NONNULL3 __attribute__((__nonnull__(3)))
34 #define DISPATCH_NONNULL4 __attribute__((__nonnull__(4)))
35 #define DISPATCH_NONNULL5 __attribute__((__nonnull__(5)))
36 #define DISPATCH_NONNULL6 __attribute__((__nonnull__(6)))
37 #define DISPATCH_NONNULL7 __attribute__((__nonnull__(7)))
38 #if __clang__ && __clang_major__ < 3
39 // rdar://problem/6857843
40 #define DISPATCH_NONNULL_ALL
42 #define DISPATCH_NONNULL_ALL __attribute__((__nonnull__))
44 #define DISPATCH_SENTINEL __attribute__((__sentinel__))
45 #define DISPATCH_PURE __attribute__((__pure__))
46 #define DISPATCH_CONST __attribute__((__const__))
47 #define DISPATCH_WARN_RESULT __attribute__((__warn_unused_result__))
48 #define DISPATCH_MALLOC __attribute__((__malloc__))
49 #define DISPATCH_ALWAYS_INLINE __attribute__((__always_inline__))
52 #define DISPATCH_NORETURN
54 #define DISPATCH_NOTHROW
56 #define DISPATCH_NONNULL1
58 #define DISPATCH_NONNULL2
60 #define DISPATCH_NONNULL3
62 #define DISPATCH_NONNULL4
64 #define DISPATCH_NONNULL5
66 #define DISPATCH_NONNULL6
68 #define DISPATCH_NONNULL7
70 #define DISPATCH_NONNULL_ALL
72 #define DISPATCH_SENTINEL
76 #define DISPATCH_CONST
78 #define DISPATCH_WARN_RESULT
80 #define DISPATCH_MALLOC
82 #define DISPATCH_ALWAYS_INLINE
86 #define DISPATCH_EXPORT extern __attribute__((visibility("default")))
88 #define DISPATCH_EXPORT extern
92 #define DISPATCH_INLINE static __inline__
94 #define DISPATCH_INLINE static inline
98 #define DISPATCH_EXPECT(x, v) __builtin_expect((x), (v))
100 #define DISPATCH_EXPECT(x, v) (x)
103 typedef void (*dispatch_function_t
)(void *);