2 * Copyright (c) 2000-2012 Apple Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. Please obtain a copy of the License at
10 * http://www.opensource.apple.com/apsl/ and read it before using this
13 * The Original Code and all software distributed under the License are
14 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18 * Please see the License for the specific language governing rights and
19 * limitations under the License.
21 * @APPLE_LICENSE_HEADER_END@
24 * Copyright 1996 1995 by Open Software Foundation, Inc. 1997 1996 1995 1994 1993 1992 1991
27 * Permission to use, copy, modify, and distribute this software and
28 * its documentation for any purpose and without fee is hereby granted,
29 * provided that the above copyright notice appears in all copies and
30 * that both the copyright notice and this permission notice appear in
31 * supporting documentation.
33 * OSF DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE
34 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
35 * FOR A PARTICULAR PURPOSE.
37 * IN NO EVENT SHALL OSF BE LIABLE FOR ANY SPECIAL, INDIRECT, OR
38 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
39 * LOSS OF USE, DATA OR PROFITS, WHETHER IN ACTION OF CONTRACT,
40 * NEGLIGENCE, OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION
41 * WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
49 * POSIX Threads - IEEE 1003.1c
56 #include <pthread/sched.h>
58 #include <sys/_pthread/_pthread_types.h>
59 #include <sys/_pthread/_pthread_attr_t.h>
60 #include <sys/_pthread/_pthread_cond_t.h>
61 #include <sys/_pthread/_pthread_condattr_t.h>
62 #include <sys/_pthread/_pthread_key_t.h>
63 #include <sys/_pthread/_pthread_mutex_t.h>
64 #include <sys/_pthread/_pthread_mutexattr_t.h>
65 #include <sys/_pthread/_pthread_once_t.h>
66 #include <sys/_pthread/_pthread_rwlock_t.h>
67 #include <sys/_pthread/_pthread_rwlockattr_t.h>
68 #include <sys/_pthread/_pthread_t.h>
70 #include <pthread/qos.h>
72 #if (!defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE)) || defined(_DARWIN_C_SOURCE) || defined(__cplusplus)
74 #include <sys/_types/_mach_port_t.h>
75 #include <sys/_types/_sigset_t.h>
77 #endif /* (!_POSIX_C_SOURCE && !_XOPEN_SOURCE) || _DARWIN_C_SOURCE || __cplusplus */
80 * These symbols indicate which [optional] features are available
81 * They can be tested at compile time via '#ifdef XXX'
82 * The way to check for pthreads is like so:
85 * #ifdef _POSIX_THREADS
86 * #include <pthread.h>
91 /* These will be moved to unistd.h */
94 * Note: These data structures are meant to be opaque. Only enough
95 * structure is exposed to support initializers.
96 * All of the typedefs will be moved to <sys/types.h>
99 #include <sys/cdefs.h>
100 #include <Availability.h>
102 #if __has_feature(assume_nonnull)
103 _Pragma("clang assume_nonnull begin")
112 * Cancel cleanup handler management. Note, since these are implemented as macros,
113 * they *MUST* occur in matched pairs!
116 #define pthread_cleanup_push(func, val) \
118 struct __darwin_pthread_handler_rec __handler; \
119 pthread_t __self = pthread_self(); \
120 __handler.__routine = func; \
121 __handler.__arg = val; \
122 __handler.__next = __self->__cleanup_stack; \
123 __self->__cleanup_stack = &__handler;
125 #define pthread_cleanup_pop(execute) \
126 /* Note: 'handler' must be in this same lexical context! */ \
127 __self->__cleanup_stack = __handler.__next; \
128 if (execute) (__handler.__routine)(__handler.__arg); \
135 #define PTHREAD_CREATE_JOINABLE 1
136 #define PTHREAD_CREATE_DETACHED 2
138 #define PTHREAD_INHERIT_SCHED 1
139 #define PTHREAD_EXPLICIT_SCHED 2
141 #define PTHREAD_CANCEL_ENABLE 0x01 /* Cancel takes place at next cancellation point */
142 #define PTHREAD_CANCEL_DISABLE 0x00 /* Cancel postponed */
143 #define PTHREAD_CANCEL_DEFERRED 0x02 /* Cancel waits until cancellation point */
144 #define PTHREAD_CANCEL_ASYNCHRONOUS 0x00 /* Cancel occurs immediately */
146 /* Value returned from pthread_join() when a thread is canceled */
147 #define PTHREAD_CANCELED ((void *) 1)
149 /* We only support PTHREAD_SCOPE_SYSTEM */
150 #define PTHREAD_SCOPE_SYSTEM 1
151 #define PTHREAD_SCOPE_PROCESS 2
153 #define PTHREAD_PROCESS_SHARED 1
154 #define PTHREAD_PROCESS_PRIVATE 2
157 * Mutex protocol attributes
159 #define PTHREAD_PRIO_NONE 0
160 #define PTHREAD_PRIO_INHERIT 1
161 #define PTHREAD_PRIO_PROTECT 2
164 * Mutex type attributes
166 #define PTHREAD_MUTEX_NORMAL 0
167 #define PTHREAD_MUTEX_ERRORCHECK 1
168 #define PTHREAD_MUTEX_RECURSIVE 2
169 #define PTHREAD_MUTEX_DEFAULT PTHREAD_MUTEX_NORMAL
172 * Mutex policy attributes
174 #define PTHREAD_MUTEX_POLICY_FAIRSHARE_NP 1
175 #define PTHREAD_MUTEX_POLICY_FIRSTFIT_NP 3
180 #define PTHREAD_RWLOCK_INITIALIZER {_PTHREAD_RWLOCK_SIG_init, {0}}
185 #define PTHREAD_MUTEX_INITIALIZER {_PTHREAD_MUTEX_SIG_init, {0}}
187 /* <rdar://problem/10854763> */
188 #if ((__MAC_OS_X_VERSION_MIN_REQUIRED && __MAC_OS_X_VERSION_MIN_REQUIRED >= 1070) || (__IPHONE_OS_VERSION_MIN_REQUIRED && __IPHONE_OS_VERSION_MIN_REQUIRED >= 50000)) || defined(__DRIVERKIT_VERSION_MIN_REQUIRED)
189 # if (!defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE)) || defined(_DARWIN_C_SOURCE)
190 # define PTHREAD_ERRORCHECK_MUTEX_INITIALIZER {_PTHREAD_ERRORCHECK_MUTEX_SIG_init, {0}}
191 # define PTHREAD_RECURSIVE_MUTEX_INITIALIZER {_PTHREAD_RECURSIVE_MUTEX_SIG_init, {0}}
192 # endif /* (!_POSIX_C_SOURCE && !_XOPEN_SOURCE) || _DARWIN_C_SOURCE */
195 /* <rdar://problem/25944576> */
196 #define _PTHREAD_SWIFT_IMPORTER_NULLABILITY_COMPAT \
197 defined(SWIFT_CLASS_EXTRA) && (!defined(SWIFT_SDK_OVERLAY_PTHREAD_EPOCH) || (SWIFT_SDK_OVERLAY_PTHREAD_EPOCH < 1))
200 * Condition variable attributes
204 * Condition variables
207 #define PTHREAD_COND_INITIALIZER {_PTHREAD_COND_SIG_init, {0}}
210 * Initialization control (once) variables
213 #define PTHREAD_ONCE_INIT {_PTHREAD_ONCE_SIG_init, {0}}
216 * Prototypes for all PTHREAD interfaces
218 __API_AVAILABLE(macos(10.4), ios(2.0))
219 int pthread_atfork(void (* _Nullable
)(void), void (* _Nullable
)(void),
220 void (* _Nullable
)(void));
222 __API_AVAILABLE(macos(10.4), ios(2.0))
223 int pthread_attr_destroy(pthread_attr_t
*);
225 __API_AVAILABLE(macos(10.4), ios(2.0))
226 int pthread_attr_getdetachstate(const pthread_attr_t
*, int *);
228 __API_AVAILABLE(macos(10.4), ios(2.0))
229 int pthread_attr_getguardsize(const pthread_attr_t
* __restrict
, size_t * __restrict
);
231 __API_AVAILABLE(macos(10.4), ios(2.0))
232 int pthread_attr_getinheritsched(const pthread_attr_t
* __restrict
, int * __restrict
);
234 __API_AVAILABLE(macos(10.4), ios(2.0))
235 int pthread_attr_getschedparam(const pthread_attr_t
* __restrict
,
236 struct sched_param
* __restrict
);
238 __API_AVAILABLE(macos(10.4), ios(2.0))
239 int pthread_attr_getschedpolicy(const pthread_attr_t
* __restrict
, int * __restrict
);
241 __API_AVAILABLE(macos(10.4), ios(2.0))
242 int pthread_attr_getscope(const pthread_attr_t
* __restrict
, int * __restrict
);
244 __API_AVAILABLE(macos(10.4), ios(2.0))
245 int pthread_attr_getstack(const pthread_attr_t
* __restrict
,
246 void * _Nullable
* _Nonnull __restrict
, size_t * __restrict
);
248 __API_AVAILABLE(macos(10.4), ios(2.0))
249 int pthread_attr_getstackaddr(const pthread_attr_t
* __restrict
,
250 void * _Nullable
* _Nonnull __restrict
);
252 __API_AVAILABLE(macos(10.4), ios(2.0))
253 int pthread_attr_getstacksize(const pthread_attr_t
* __restrict
, size_t * __restrict
);
255 __API_AVAILABLE(macos(10.4), ios(2.0))
256 int pthread_attr_init(pthread_attr_t
*);
258 __API_AVAILABLE(macos(10.4), ios(2.0))
259 int pthread_attr_setdetachstate(pthread_attr_t
*, int);
261 __API_AVAILABLE(macos(10.4), ios(2.0))
262 int pthread_attr_setguardsize(pthread_attr_t
*, size_t);
264 __API_AVAILABLE(macos(10.4), ios(2.0))
265 int pthread_attr_setinheritsched(pthread_attr_t
*, int);
267 __API_AVAILABLE(macos(10.4), ios(2.0))
268 int pthread_attr_setschedparam(pthread_attr_t
* __restrict
,
269 const struct sched_param
* __restrict
);
271 __API_AVAILABLE(macos(10.4), ios(2.0))
272 int pthread_attr_setschedpolicy(pthread_attr_t
*, int);
274 __API_AVAILABLE(macos(10.4), ios(2.0))
275 int pthread_attr_setscope(pthread_attr_t
*, int);
277 __API_AVAILABLE(macos(10.4), ios(2.0))
278 int pthread_attr_setstack(pthread_attr_t
*, void *, size_t);
280 __API_AVAILABLE(macos(10.4), ios(2.0))
281 int pthread_attr_setstackaddr(pthread_attr_t
*, void *);
283 __API_AVAILABLE(macos(10.4), ios(2.0))
284 int pthread_attr_setstacksize(pthread_attr_t
*, size_t);
286 __API_AVAILABLE(macos(10.4), ios(2.0))
287 int pthread_cancel(pthread_t
) __DARWIN_ALIAS(pthread_cancel
);
289 __API_AVAILABLE(macos(10.4), ios(2.0))
290 int pthread_cond_broadcast(pthread_cond_t
*);
292 __API_AVAILABLE(macos(10.4), ios(2.0))
293 int pthread_cond_destroy(pthread_cond_t
*);
295 __API_AVAILABLE(macos(10.4), ios(2.0))
296 int pthread_cond_init(
297 pthread_cond_t
* __restrict
,
298 const pthread_condattr_t
* _Nullable __restrict
)
299 __DARWIN_ALIAS(pthread_cond_init
);
301 __API_AVAILABLE(macos(10.4), ios(2.0))
302 int pthread_cond_signal(pthread_cond_t
*);
304 __API_AVAILABLE(macos(10.4), ios(2.0))
305 int pthread_cond_timedwait(
306 pthread_cond_t
* __restrict
, pthread_mutex_t
* __restrict
,
307 const struct timespec
* _Nullable __restrict
)
308 __DARWIN_ALIAS_C(pthread_cond_timedwait
);
310 __API_AVAILABLE(macos(10.4), ios(2.0))
311 int pthread_cond_wait(pthread_cond_t
* __restrict
,
312 pthread_mutex_t
* __restrict
) __DARWIN_ALIAS_C(pthread_cond_wait
);
314 __API_AVAILABLE(macos(10.4), ios(2.0))
315 int pthread_condattr_destroy(pthread_condattr_t
*);
317 __API_AVAILABLE(macos(10.4), ios(2.0))
318 int pthread_condattr_init(pthread_condattr_t
*);
320 __API_AVAILABLE(macos(10.4), ios(2.0))
321 int pthread_condattr_getpshared(const pthread_condattr_t
* __restrict
,
324 __API_AVAILABLE(macos(10.4), ios(2.0))
325 int pthread_condattr_setpshared(pthread_condattr_t
*, int);
327 __API_AVAILABLE(macos(10.4), ios(2.0))
328 #if !_PTHREAD_SWIFT_IMPORTER_NULLABILITY_COMPAT
329 int pthread_create(pthread_t _Nullable
* _Nonnull __restrict
,
330 const pthread_attr_t
* _Nullable __restrict
,
331 void * _Nullable (* _Nonnull
)(void * _Nullable
),
332 void * _Nullable __restrict
);
334 int pthread_create(pthread_t
* __restrict
,
335 const pthread_attr_t
* _Nullable __restrict
,
336 void *(* _Nonnull
)(void *), void * _Nullable __restrict
);
337 #endif // _PTHREAD_SWIFT_IMPORTER_NULLABILITY_COMPAT
339 __API_AVAILABLE(macos(10.4), ios(2.0))
340 int pthread_detach(pthread_t
);
342 __API_AVAILABLE(macos(10.4), ios(2.0))
343 int pthread_equal(pthread_t _Nullable
, pthread_t _Nullable
);
345 __API_AVAILABLE(macos(10.4), ios(2.0))
346 void pthread_exit(void * _Nullable
) __dead2
;
348 __API_AVAILABLE(macos(10.4), ios(2.0))
349 int pthread_getconcurrency(void);
351 __API_AVAILABLE(macos(10.4), ios(2.0))
352 int pthread_getschedparam(pthread_t
, int * _Nullable __restrict
,
353 struct sched_param
* _Nullable __restrict
);
355 __API_AVAILABLE(macos(10.4), ios(2.0))
356 void* _Nullable
pthread_getspecific(pthread_key_t
);
358 __API_AVAILABLE(macos(10.4), ios(2.0))
359 int pthread_join(pthread_t
, void * _Nullable
* _Nullable
)
360 __DARWIN_ALIAS_C(pthread_join
);
362 __API_AVAILABLE(macos(10.4), ios(2.0))
363 int pthread_key_create(pthread_key_t
*, void (* _Nullable
)(void *));
365 __API_AVAILABLE(macos(10.4), ios(2.0))
366 int pthread_key_delete(pthread_key_t
);
368 __API_AVAILABLE(macos(10.4), ios(2.0))
369 int pthread_mutex_destroy(pthread_mutex_t
*);
371 __API_AVAILABLE(macos(10.4), ios(2.0))
372 int pthread_mutex_getprioceiling(const pthread_mutex_t
* __restrict
,
375 __API_AVAILABLE(macos(10.4), ios(2.0))
376 int pthread_mutex_init(pthread_mutex_t
* __restrict
,
377 const pthread_mutexattr_t
* _Nullable __restrict
);
379 __API_AVAILABLE(macos(10.4), ios(2.0))
380 int pthread_mutex_lock(pthread_mutex_t
*);
382 __API_AVAILABLE(macos(10.4), ios(2.0))
383 int pthread_mutex_setprioceiling(pthread_mutex_t
* __restrict
, int,
386 __API_AVAILABLE(macos(10.4), ios(2.0))
387 int pthread_mutex_trylock(pthread_mutex_t
*);
389 __API_AVAILABLE(macos(10.4), ios(2.0))
390 int pthread_mutex_unlock(pthread_mutex_t
*);
392 __API_AVAILABLE(macos(10.4), ios(2.0))
393 int pthread_mutexattr_destroy(pthread_mutexattr_t
*) __DARWIN_ALIAS(pthread_mutexattr_destroy
);
395 __API_AVAILABLE(macos(10.4), ios(2.0))
396 int pthread_mutexattr_getprioceiling(const pthread_mutexattr_t
* __restrict
,
399 __API_AVAILABLE(macos(10.4), ios(2.0))
400 int pthread_mutexattr_getprotocol(const pthread_mutexattr_t
* __restrict
,
403 __API_AVAILABLE(macos(10.4), ios(2.0))
404 int pthread_mutexattr_getpshared(const pthread_mutexattr_t
* __restrict
,
407 __API_AVAILABLE(macos(10.4), ios(2.0))
408 int pthread_mutexattr_gettype(const pthread_mutexattr_t
* __restrict
,
411 __API_AVAILABLE(macos(10.13.4), ios(11.3), watchos(4.3), tvos(11.3))
412 int pthread_mutexattr_getpolicy_np(const pthread_mutexattr_t
* __restrict
,
415 __API_AVAILABLE(macos(10.4), ios(2.0))
416 int pthread_mutexattr_init(pthread_mutexattr_t
*);
418 __API_AVAILABLE(macos(10.4), ios(2.0))
419 int pthread_mutexattr_setprioceiling(pthread_mutexattr_t
*, int);
421 __API_AVAILABLE(macos(10.4), ios(2.0))
422 int pthread_mutexattr_setprotocol(pthread_mutexattr_t
*, int);
424 __API_AVAILABLE(macos(10.4), ios(2.0))
425 int pthread_mutexattr_setpshared(pthread_mutexattr_t
*, int);
427 __API_AVAILABLE(macos(10.4), ios(2.0))
428 int pthread_mutexattr_settype(pthread_mutexattr_t
*, int);
430 __API_AVAILABLE(macos(10.7), ios(5.0))
431 int pthread_mutexattr_setpolicy_np(pthread_mutexattr_t
*, int);
433 __SWIFT_UNAVAILABLE_MSG("Use lazily initialized globals instead")
434 __API_AVAILABLE(macos(10.4), ios(2.0))
435 int pthread_once(pthread_once_t
*, void (* _Nonnull
)(void));
437 __API_AVAILABLE(macos(10.4), ios(2.0))
438 int pthread_rwlock_destroy(pthread_rwlock_t
* ) __DARWIN_ALIAS(pthread_rwlock_destroy
);
440 __API_AVAILABLE(macos(10.4), ios(2.0))
441 int pthread_rwlock_init(pthread_rwlock_t
* __restrict
,
442 const pthread_rwlockattr_t
* _Nullable __restrict
)
443 __DARWIN_ALIAS(pthread_rwlock_init
);
445 __API_AVAILABLE(macos(10.4), ios(2.0))
446 int pthread_rwlock_rdlock(pthread_rwlock_t
*) __DARWIN_ALIAS(pthread_rwlock_rdlock
);
448 __API_AVAILABLE(macos(10.4), ios(2.0))
449 int pthread_rwlock_tryrdlock(pthread_rwlock_t
*) __DARWIN_ALIAS(pthread_rwlock_tryrdlock
);
451 __API_AVAILABLE(macos(10.4), ios(2.0))
452 int pthread_rwlock_trywrlock(pthread_rwlock_t
*) __DARWIN_ALIAS(pthread_rwlock_trywrlock
);
454 __API_AVAILABLE(macos(10.4), ios(2.0))
455 int pthread_rwlock_wrlock(pthread_rwlock_t
*) __DARWIN_ALIAS(pthread_rwlock_wrlock
);
457 __API_AVAILABLE(macos(10.4), ios(2.0))
458 int pthread_rwlock_unlock(pthread_rwlock_t
*) __DARWIN_ALIAS(pthread_rwlock_unlock
);
460 __API_AVAILABLE(macos(10.4), ios(2.0))
461 int pthread_rwlockattr_destroy(pthread_rwlockattr_t
*);
463 __API_AVAILABLE(macos(10.4), ios(2.0))
464 int pthread_rwlockattr_getpshared(const pthread_rwlockattr_t
* __restrict
,
467 __API_AVAILABLE(macos(10.4), ios(2.0))
468 int pthread_rwlockattr_init(pthread_rwlockattr_t
*);
470 __API_AVAILABLE(macos(10.4), ios(2.0))
471 int pthread_rwlockattr_setpshared(pthread_rwlockattr_t
*, int);
473 __API_AVAILABLE(macos(10.4), ios(2.0))
474 pthread_t
pthread_self(void);
476 __API_AVAILABLE(macos(10.4), ios(2.0))
477 int pthread_setcancelstate(int , int * _Nullable
)
478 __DARWIN_ALIAS(pthread_setcancelstate
);
480 __API_AVAILABLE(macos(10.4), ios(2.0))
481 int pthread_setcanceltype(int , int * _Nullable
)
482 __DARWIN_ALIAS(pthread_setcanceltype
);
484 __API_AVAILABLE(macos(10.4), ios(2.0))
485 int pthread_setconcurrency(int);
487 __API_AVAILABLE(macos(10.4), ios(2.0))
488 int pthread_setschedparam(pthread_t
, int, const struct sched_param
*);
490 __API_AVAILABLE(macos(10.4), ios(2.0))
491 int pthread_setspecific(pthread_key_t
, const void * _Nullable
);
493 __API_AVAILABLE(macos(10.4), ios(2.0))
494 void pthread_testcancel(void) __DARWIN_ALIAS(pthread_testcancel
);
496 #if (!defined(_POSIX_C_SOURCE) && !defined(_XOPEN_SOURCE)) || defined(_DARWIN_C_SOURCE) || defined(__cplusplus)
498 /* returns non-zero if pthread_create or cthread_fork have been called */
499 __API_AVAILABLE(macos(10.4), ios(2.0))
500 int pthread_is_threaded_np(void);
502 __API_AVAILABLE(macos(10.6), ios(3.2))
503 int pthread_threadid_np(pthread_t _Nullable
,__uint64_t
* _Nullable
);
505 /*SPI to set and get pthread name*/
506 __API_AVAILABLE(macos(10.6), ios(3.2))
507 int pthread_getname_np(pthread_t
,char*,size_t);
509 __API_AVAILABLE(macos(10.6), ios(3.2))
510 int pthread_setname_np(const char*);
512 /* returns non-zero if the current thread is the main thread */
513 __API_AVAILABLE(macos(10.4), ios(2.0))
514 int pthread_main_np(void);
516 /* return the mach thread bound to the pthread */
517 __API_AVAILABLE(macos(10.4), ios(2.0))
518 mach_port_t
pthread_mach_thread_np(pthread_t
);
520 __API_AVAILABLE(macos(10.4), ios(2.0))
521 size_t pthread_get_stacksize_np(pthread_t
);
523 __API_AVAILABLE(macos(10.4), ios(2.0))
524 void* pthread_get_stackaddr_np(pthread_t
);
526 /* Like pthread_cond_signal(), but only wake up the specified pthread */
527 __API_AVAILABLE(macos(10.4), ios(2.0))
528 int pthread_cond_signal_thread_np(pthread_cond_t
*, pthread_t _Nullable
);
530 /* Like pthread_cond_timedwait, but use a relative timeout */
531 __API_AVAILABLE(macos(10.4), ios(2.0))
532 int pthread_cond_timedwait_relative_np(pthread_cond_t
*, pthread_mutex_t
*,
533 const struct timespec
* _Nullable
);
535 /* Like pthread_create(), but leaves the thread suspended */
536 __API_AVAILABLE(macos(10.4), ios(2.0))
537 #if !_PTHREAD_SWIFT_IMPORTER_NULLABILITY_COMPAT
538 int pthread_create_suspended_np(
539 pthread_t _Nullable
* _Nonnull
, const pthread_attr_t
* _Nullable
,
540 void * _Nullable (* _Nonnull
)(void * _Nullable
), void * _Nullable
);
542 int pthread_create_suspended_np(pthread_t
*, const pthread_attr_t
* _Nullable
,
543 void *(* _Nonnull
)(void *), void * _Nullable
);
546 __API_AVAILABLE(macos(10.4), ios(2.0))
547 int pthread_kill(pthread_t
, int);
549 __API_AVAILABLE(macos(10.5), ios(2.0))
550 _Nullable pthread_t
pthread_from_mach_thread_np(mach_port_t
);
552 __API_AVAILABLE(macos(10.4), ios(2.0))
553 int pthread_sigmask(int, const sigset_t
* _Nullable
, sigset_t
* _Nullable
)
554 __DARWIN_ALIAS(pthread_sigmask
);
556 __API_AVAILABLE(macos(10.4), ios(2.0))
557 void pthread_yield_np(void);
559 __API_AVAILABLE(macos(10.16))
560 __SPI_AVAILABLE(ios(14.0), tvos(14.0), watchos(7.0), bridgeos(5.0), driverkit(20.0))
561 void pthread_jit_write_protect_np(int enabled
);
563 __API_AVAILABLE(macos(10.16))
564 __SPI_AVAILABLE(ios(14.0), tvos(14.0), watchos(7.0), bridgeos(5.0), driverkit(20.0))
565 int pthread_jit_write_protect_supported_np(void);
568 * @function pthread_cpu_number_np
570 * @param cpu_number_out
571 * The CPU number that the thread was running on at the time of query.
572 * This cpu number is in the interval [0, ncpus) (from sysctlbyname("hw.ncpu"))
575 * This function returns 0 or the value of errno if an error occurred.
578 * Optimizations of per-CPU datastructures based on the result of this function
579 * still require synchronization since it is not guaranteed that the thread will
580 * still be on the same CPU by the time the function returns.
582 __API_AVAILABLE(macos(11.0), ios(14.2), tvos(14.2), watchos(7.1))
584 pthread_cpu_number_np(size_t *cpu_number_out
);
586 #endif /* (!_POSIX_C_SOURCE && !_XOPEN_SOURCE) || _DARWIN_C_SOURCE || __cplusplus */
588 #if __has_feature(assume_nonnull)
589 _Pragma("clang assume_nonnull end")
592 #endif /* _PTHREAD_H */