]> git.saurik.com Git - apple/libdispatch.git/blame - dispatch/introspection.h
libdispatch-339.92.1.tar.gz
[apple/libdispatch.git] / dispatch / introspection.h
CommitLineData
517da941
A
1/*
2 * Copyright (c) 2013 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_INTROSPECTION__
22#define __DISPATCH_INTROSPECTION__
23
24#include <dispatch/dispatch.h>
25
26/*!
27 * @header
28 *
29 * @abstract
30 * Interposable introspection hooks for libdispatch.
31 *
32 * @discussion
33 * These hooks are only available in the introspection version of the library,
34 * loaded by running a process with the environment variable
35 * DYLD_LIBRARY_PATH=/usr/lib/system/introspection
36 */
37
38__BEGIN_DECLS
39
40/*!
41 * @function dispatch_introspection_hook_queue_create
42 *
43 * @abstract
44 * Interposable hook function called when a dispatch queue was created.
45 *
46 * @param queue
47 * The newly created dispatch queue.
48 */
49
50__OSX_AVAILABLE_STARTING(__MAC_10_9,__IPHONE_7_0)
51DISPATCH_EXPORT
52void
53dispatch_introspection_hook_queue_create(dispatch_queue_t queue);
54
55/*!
56 * @function dispatch_introspection_hook_queue_destroy
57 *
58 * @abstract
59 * Interposable hook function called when a dispatch queue is about to be
60 * destroyed.
61 *
62 * @param queue
63 * The dispatch queue about to be destroyed.
64 */
65
66__OSX_AVAILABLE_STARTING(__MAC_10_9,__IPHONE_7_0)
67DISPATCH_EXPORT
68void
69dispatch_introspection_hook_queue_destroy(dispatch_queue_t queue);
70
71/*!
72 * @function dispatch_introspection_hook_queue_item_enqueue
73 *
74 * @abstract
75 * Interposable hook function called when an item is about to be enqueued onto
76 * a dispatch queue.
77 *
78 * @param queue
79 * The dispatch queue enqueued onto.
80 *
81 * @param item
82 * The object about to be enqueued.
83 */
84
85__OSX_AVAILABLE_STARTING(__MAC_10_9,__IPHONE_7_0)
86DISPATCH_EXPORT
87void
88dispatch_introspection_hook_queue_item_enqueue(dispatch_queue_t queue,
89 dispatch_object_t item);
90
91/*!
92 * @function dispatch_introspection_hook_queue_item_dequeue
93 *
94 * @abstract
95 * Interposable hook function called when an item was dequeued from a dispatch
96 * queue.
97 *
98 * @param queue
99 * The dispatch queue dequeued from.
100 *
101 * @param item
102 * The dequeued object.
103 */
104
105__OSX_AVAILABLE_STARTING(__MAC_10_9,__IPHONE_7_0)
106DISPATCH_EXPORT
107void
108dispatch_introspection_hook_queue_item_dequeue(dispatch_queue_t queue,
109 dispatch_object_t item);
110
111/*!
112 * @function dispatch_introspection_hook_queue_callout_begin
113 *
114 * @abstract
115 * Interposable hook function called when a client function is about to be
116 * called out to on a dispatch queue.
117 *
118 * @param queue
119 * The dispatch queue the callout is performed on.
120 *
121 * @param context
122 * The context parameter passed to the function. For a callout to a block,
123 * this is a pointer to the block object.
124 *
125 * @param function
126 * The client function about to be called out to. For a callout to a block,
127 * this is the block object's invoke function.
128 */
129
130__OSX_AVAILABLE_STARTING(__MAC_10_9,__IPHONE_7_0)
131DISPATCH_EXPORT
132void
133dispatch_introspection_hook_queue_callout_begin(dispatch_queue_t queue,
134 void *context, dispatch_function_t function);
135
136/*!
137 * @function dispatch_introspection_hook_queue_callout_end
138 *
139 * @abstract
140 * Interposable hook function called after a client function has returned from
141 * a callout on a dispatch queue.
142 *
143 * @param queue
144 * The dispatch queue the callout was performed on.
145 *
146 * @param context
147 * The context parameter passed to the function. For a callout to a block,
148 * this is a pointer to the block object.
149 *
150 * @param function
151 * The client function that was called out to. For a callout to a block,
152 * this is the block object's invoke function.
153 */
154
155__OSX_AVAILABLE_STARTING(__MAC_10_9,__IPHONE_7_0)
156DISPATCH_EXPORT
157void
158dispatch_introspection_hook_queue_callout_end(dispatch_queue_t queue,
159 void *context, dispatch_function_t function);
160
161__END_DECLS
162
163#endif