2 * Copyright (c) 2008-2010 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_ONCE__
22 #define __DISPATCH_ONCE__
24 #ifndef __DISPATCH_INDIRECT__
25 #error "Please #include <dispatch/dispatch.h> instead of this file directly."
26 #include <dispatch/base.h> // for HeaderDoc
32 * @typedef dispatch_once_t
35 * A predicate for use with dispatch_once(). It must be initialized to zero.
36 * Note: static and global variables default to zero.
38 typedef long dispatch_once_t
;
41 * @function dispatch_once
44 * Execute a block once and only once.
47 * A pointer to a dispatch_once_t that is used to test whether the block has
51 * The block to execute once.
54 * Always call dispatch_once() before using or testing any variables that are
55 * initialized by the block.
58 __OSX_AVAILABLE_STARTING(__MAC_10_6
,__IPHONE_4_0
)
59 DISPATCH_EXPORT DISPATCH_NONNULL_ALL DISPATCH_NOTHROW
61 dispatch_once(dispatch_once_t
*predicate
, dispatch_block_t block
);
63 DISPATCH_INLINE DISPATCH_ALWAYS_INLINE DISPATCH_NONNULL_ALL DISPATCH_NOTHROW
65 _dispatch_once(dispatch_once_t
*predicate
, dispatch_block_t block
)
67 if (DISPATCH_EXPECT(*predicate
, ~0l) != ~0l) {
68 dispatch_once(predicate
, block
);
72 #define dispatch_once _dispatch_once
75 __OSX_AVAILABLE_STARTING(__MAC_10_6
,__IPHONE_4_0
)
76 DISPATCH_EXPORT DISPATCH_NONNULL1 DISPATCH_NONNULL3 DISPATCH_NOTHROW
78 dispatch_once_f(dispatch_once_t
*predicate
, void *context
,
79 dispatch_function_t function
);
81 DISPATCH_INLINE DISPATCH_ALWAYS_INLINE DISPATCH_NONNULL1 DISPATCH_NONNULL3
84 _dispatch_once_f(dispatch_once_t
*predicate
, void *context
,
85 dispatch_function_t function
)
87 if (DISPATCH_EXPECT(*predicate
, ~0l) != ~0l) {
88 dispatch_once_f(predicate
, context
, function
);
91 #undef dispatch_once_f
92 #define dispatch_once_f _dispatch_once_f