├── include ├── pthread │ ├── introspection.h │ ├── pthread.h │ ├── pthread_impl.h │ ├── pthread_spis.h │ ├── qos.h │ ├── sched.h │ ├── spawn.h │ └── stack_np.h └── sys │ ├── _pthread │ ├── _pthread_attr_t.h │ ├── _pthread_cond_t.h │ ├── _pthread_condattr_t.h │ ├── _pthread_key_t.h │ ├── _pthread_mutex_t.h │ ├── _pthread_mutexattr_t.h │ ├── _pthread_once_t.h │ ├── _pthread_rwlock_t.h │ ├── _pthread_rwlockattr_t.h │ ├── _pthread_t.h │ └── _pthread_types.h │ └── qos.h ├── kern ├── kern_init.c ├── kern_internal.h ├── kern_support.c ├── kern_synch.c ├── kern_trace.h ├── pthread-Info.plist └── synch_internal.h ├── libpthread.xcodeproj └── project.pbxproj ├── lldbmacros └── init.py ├── man ├── pthread.3 ├── pthread_atfork.3 ├── pthread_attr.3 ├── pthread_attr_init_destroy.3 ├── pthread_attr_set_getdetachstate.3 ├── pthread_attr_set_getinheritsched.3 ├── pthread_attr_set_getschedparam.3 ├── pthread_attr_set_getschedpolicy.3 ├── pthread_attr_set_getscope.3 ├── pthread_attr_set_getstackaddr.3 ├── pthread_attr_set_getstacksize.3 ├── pthread_cancel.3 ├── pthread_cleanup_pop.3 ├── pthread_cleanup_push.3 ├── pthread_cond_broadcast.3 ├── pthread_cond_destroy.3 ├── pthread_cond_init.3 ├── pthread_cond_signal.3 ├── pthread_cond_timedwait.3 ├── pthread_cond_wait.3 ├── pthread_condattr.3 ├── pthread_create.3 ├── pthread_detach.3 ├── pthread_equal.3 ├── pthread_exit.3 ├── pthread_getschedparam.3 ├── pthread_getspecific.3 ├── pthread_jit_write_protect_np.3 ├── pthread_join.3 ├── pthread_key_create.3 ├── pthread_key_delete.3 ├── pthread_kill.2 ├── pthread_main_np.3 ├── pthread_mutex_destroy.3 ├── pthread_mutex_init.3 ├── pthread_mutex_lock.3 ├── pthread_mutex_trylock.3 ├── pthread_mutex_unlock.3 ├── pthread_mutexattr.3 ├── pthread_once.3 ├── pthread_rwlock_destroy.3 ├── pthread_rwlock_init.3 ├── pthread_rwlock_rdlock.3 ├── pthread_rwlock_unlock.3 ├── pthread_rwlock_wrlock.3 ├── pthread_rwlockattr_destroy.3 ├── pthread_rwlockattr_getpshared.3 ├── pthread_rwlockattr_init.3 ├── pthread_rwlockattr_setpshared.3 ├── pthread_self.3 ├── pthread_setcancelstate.3 ├── pthread_setname_np.3 ├── pthread_setspecific.3 ├── pthread_sigmask.2 ├── pthread_threadid_np.3 └── pthread_yield_np.3 ├── private ├── pthread │ ├── dependency_private.h │ ├── introspection_private.h │ ├── jit_private.h │ ├── posix_sched.h │ ├── private.h │ ├── qos_private.h │ ├── spinlock_private.h │ ├── tsd_private.h │ ├── workgroup_private.h │ └── workqueue_private.h └── sys │ └── qos_private.h ├── src ├── exports_internal.h ├── imports_internal.h ├── inline_internal.h ├── internal.h ├── offsets_internal.h ├── plockstat.d ├── prototypes_internal.h ├── pthread.c ├── pthread_asm.s ├── pthread_atfork.c ├── pthread_cancelable.c ├── pthread_cond.c ├── pthread_cwd.c ├── pthread_dependency.c ├── pthread_mutex.c ├── pthread_rwlock.c ├── pthread_tsd.c ├── qos.c ├── resolver │ ├── resolver.c │ ├── resolver.h │ └── resolver_internal.h ├── types_internal.h └── variants │ └── pthread_cancelable_cancel.c ├── tests ├── Makefile ├── add_timer_termination.c ├── atfork.c ├── bsdthread_set_self.c ├── com.apple.libpthread.tests.plist ├── cond.c ├── cond_hang3.c ├── cond_prepost.c ├── cond_stress.c ├── cond_timed.c ├── custom_stack.c ├── darwintest_defaults.h ├── detach.c ├── helpers │ ├── libpthreadjittest.c │ ├── pthread_jit_write_with_callback_tool.c │ └── stackoverflow_crash.c ├── join.c ├── main_stack.c ├── main_stack_custom.c ├── main_stack_legacy.c ├── maxwidth.c ├── mutex.c ├── mutex_prepost.c ├── mutex_try.c ├── once_cancel.c ├── perf_contended_mutex_rwlock.c ├── pthread_attr_setstacksize.c ├── pthread_bulk_create.c ├── pthread_cancel.c ├── pthread_create_from_mach_thread.c ├── pthread_cwd.c ├── pthread_dependency.c ├── pthread_exit.c ├── pthread_get_qos_class_np.c ├── pthread_introspection.c ├── pthread_jit_write_freeze_callbacks-ios-entitlements.plist ├── pthread_jit_write_freeze_callbacks-macos-entitlements.plist ├── pthread_jit_write_freeze_callbacks.c ├── pthread_jit_write_lockdown-entitlements.plist ├── pthread_jit_write_lockdown.c ├── pthread_jit_write_protection-entitlements.plist ├── pthread_jit_write_protection.c ├── pthread_jit_write_test_inline.h ├── pthread_jit_write_with_callback-ios-entitlements.plist ├── pthread_jit_write_with_callback-macos-entitlements.plist ├── pthread_jit_write_with_callback.c ├── pthread_setspecific.c ├── pthread_threadid_np.c ├── qos.c ├── rdar_32848402.c ├── rwlock-22244050.c ├── rwlock-signal.c ├── rwlock.c ├── setrlimit_sigsegv.c ├── stack.c ├── stack_aslr.c ├── stack_size.c ├── tsd.c ├── wq_block_handoff.c ├── wq_cooperative.c ├── wq_event_manager.c ├── wq_kevent.c ├── wq_kevent.h ├── wq_kevent_stress.c └── wq_limits.c ├── tools ├── locktrace.lua └── pthtrace.lua └── xcodescripts ├── eos.xcconfig ├── install-codes.sh ├── install-lldbmacros.sh ├── install-manpages.sh ├── install-symlinks.sh ├── install-sys-headers.sh ├── kext.xcconfig ├── kext_development.xcconfig ├── pthread-i386.aliases ├── pthread-tapi.xcconfig ├── pthread.aliases ├── pthread.dirty ├── pthread.xcconfig ├── pthread_driverkit.xcconfig ├── pthread_introspection.xcconfig ├── resolved.xcconfig ├── resolver.xcconfig ├── run-on-install.sh └── static.xcconfig /include/pthread/introspection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/include/pthread/introspection.h -------------------------------------------------------------------------------- /include/pthread/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/include/pthread/pthread.h -------------------------------------------------------------------------------- /include/pthread/pthread_impl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/include/pthread/pthread_impl.h -------------------------------------------------------------------------------- /include/pthread/pthread_spis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/include/pthread/pthread_spis.h -------------------------------------------------------------------------------- /include/pthread/qos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/include/pthread/qos.h -------------------------------------------------------------------------------- /include/pthread/sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/include/pthread/sched.h -------------------------------------------------------------------------------- /include/pthread/spawn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/include/pthread/spawn.h -------------------------------------------------------------------------------- /include/pthread/stack_np.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/include/pthread/stack_np.h -------------------------------------------------------------------------------- /include/sys/_pthread/_pthread_attr_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/include/sys/_pthread/_pthread_attr_t.h -------------------------------------------------------------------------------- /include/sys/_pthread/_pthread_cond_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/include/sys/_pthread/_pthread_cond_t.h -------------------------------------------------------------------------------- /include/sys/_pthread/_pthread_condattr_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/include/sys/_pthread/_pthread_condattr_t.h -------------------------------------------------------------------------------- /include/sys/_pthread/_pthread_key_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/include/sys/_pthread/_pthread_key_t.h -------------------------------------------------------------------------------- /include/sys/_pthread/_pthread_mutex_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/include/sys/_pthread/_pthread_mutex_t.h -------------------------------------------------------------------------------- /include/sys/_pthread/_pthread_mutexattr_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/include/sys/_pthread/_pthread_mutexattr_t.h -------------------------------------------------------------------------------- /include/sys/_pthread/_pthread_once_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/include/sys/_pthread/_pthread_once_t.h -------------------------------------------------------------------------------- /include/sys/_pthread/_pthread_rwlock_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/include/sys/_pthread/_pthread_rwlock_t.h -------------------------------------------------------------------------------- /include/sys/_pthread/_pthread_rwlockattr_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/include/sys/_pthread/_pthread_rwlockattr_t.h -------------------------------------------------------------------------------- /include/sys/_pthread/_pthread_t.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/include/sys/_pthread/_pthread_t.h -------------------------------------------------------------------------------- /include/sys/_pthread/_pthread_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/include/sys/_pthread/_pthread_types.h -------------------------------------------------------------------------------- /include/sys/qos.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/include/sys/qos.h -------------------------------------------------------------------------------- /kern/kern_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/kern/kern_init.c -------------------------------------------------------------------------------- /kern/kern_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/kern/kern_internal.h -------------------------------------------------------------------------------- /kern/kern_support.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/kern/kern_support.c -------------------------------------------------------------------------------- /kern/kern_synch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/kern/kern_synch.c -------------------------------------------------------------------------------- /kern/kern_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/kern/kern_trace.h -------------------------------------------------------------------------------- /kern/pthread-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/kern/pthread-Info.plist -------------------------------------------------------------------------------- /kern/synch_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/kern/synch_internal.h -------------------------------------------------------------------------------- /libpthread.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/libpthread.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /lldbmacros/init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/lldbmacros/init.py -------------------------------------------------------------------------------- /man/pthread.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread.3 -------------------------------------------------------------------------------- /man/pthread_atfork.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_atfork.3 -------------------------------------------------------------------------------- /man/pthread_attr.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_attr.3 -------------------------------------------------------------------------------- /man/pthread_attr_init_destroy.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_attr_init_destroy.3 -------------------------------------------------------------------------------- /man/pthread_attr_set_getdetachstate.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_attr_set_getdetachstate.3 -------------------------------------------------------------------------------- /man/pthread_attr_set_getinheritsched.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_attr_set_getinheritsched.3 -------------------------------------------------------------------------------- /man/pthread_attr_set_getschedparam.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_attr_set_getschedparam.3 -------------------------------------------------------------------------------- /man/pthread_attr_set_getschedpolicy.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_attr_set_getschedpolicy.3 -------------------------------------------------------------------------------- /man/pthread_attr_set_getscope.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_attr_set_getscope.3 -------------------------------------------------------------------------------- /man/pthread_attr_set_getstackaddr.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_attr_set_getstackaddr.3 -------------------------------------------------------------------------------- /man/pthread_attr_set_getstacksize.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_attr_set_getstacksize.3 -------------------------------------------------------------------------------- /man/pthread_cancel.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_cancel.3 -------------------------------------------------------------------------------- /man/pthread_cleanup_pop.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_cleanup_pop.3 -------------------------------------------------------------------------------- /man/pthread_cleanup_push.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_cleanup_push.3 -------------------------------------------------------------------------------- /man/pthread_cond_broadcast.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_cond_broadcast.3 -------------------------------------------------------------------------------- /man/pthread_cond_destroy.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_cond_destroy.3 -------------------------------------------------------------------------------- /man/pthread_cond_init.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_cond_init.3 -------------------------------------------------------------------------------- /man/pthread_cond_signal.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_cond_signal.3 -------------------------------------------------------------------------------- /man/pthread_cond_timedwait.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_cond_timedwait.3 -------------------------------------------------------------------------------- /man/pthread_cond_wait.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_cond_wait.3 -------------------------------------------------------------------------------- /man/pthread_condattr.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_condattr.3 -------------------------------------------------------------------------------- /man/pthread_create.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_create.3 -------------------------------------------------------------------------------- /man/pthread_detach.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_detach.3 -------------------------------------------------------------------------------- /man/pthread_equal.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_equal.3 -------------------------------------------------------------------------------- /man/pthread_exit.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_exit.3 -------------------------------------------------------------------------------- /man/pthread_getschedparam.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_getschedparam.3 -------------------------------------------------------------------------------- /man/pthread_getspecific.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_getspecific.3 -------------------------------------------------------------------------------- /man/pthread_jit_write_protect_np.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_jit_write_protect_np.3 -------------------------------------------------------------------------------- /man/pthread_join.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_join.3 -------------------------------------------------------------------------------- /man/pthread_key_create.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_key_create.3 -------------------------------------------------------------------------------- /man/pthread_key_delete.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_key_delete.3 -------------------------------------------------------------------------------- /man/pthread_kill.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_kill.2 -------------------------------------------------------------------------------- /man/pthread_main_np.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_main_np.3 -------------------------------------------------------------------------------- /man/pthread_mutex_destroy.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_mutex_destroy.3 -------------------------------------------------------------------------------- /man/pthread_mutex_init.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_mutex_init.3 -------------------------------------------------------------------------------- /man/pthread_mutex_lock.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_mutex_lock.3 -------------------------------------------------------------------------------- /man/pthread_mutex_trylock.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_mutex_trylock.3 -------------------------------------------------------------------------------- /man/pthread_mutex_unlock.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_mutex_unlock.3 -------------------------------------------------------------------------------- /man/pthread_mutexattr.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_mutexattr.3 -------------------------------------------------------------------------------- /man/pthread_once.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_once.3 -------------------------------------------------------------------------------- /man/pthread_rwlock_destroy.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_rwlock_destroy.3 -------------------------------------------------------------------------------- /man/pthread_rwlock_init.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_rwlock_init.3 -------------------------------------------------------------------------------- /man/pthread_rwlock_rdlock.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_rwlock_rdlock.3 -------------------------------------------------------------------------------- /man/pthread_rwlock_unlock.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_rwlock_unlock.3 -------------------------------------------------------------------------------- /man/pthread_rwlock_wrlock.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_rwlock_wrlock.3 -------------------------------------------------------------------------------- /man/pthread_rwlockattr_destroy.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_rwlockattr_destroy.3 -------------------------------------------------------------------------------- /man/pthread_rwlockattr_getpshared.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_rwlockattr_getpshared.3 -------------------------------------------------------------------------------- /man/pthread_rwlockattr_init.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_rwlockattr_init.3 -------------------------------------------------------------------------------- /man/pthread_rwlockattr_setpshared.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_rwlockattr_setpshared.3 -------------------------------------------------------------------------------- /man/pthread_self.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_self.3 -------------------------------------------------------------------------------- /man/pthread_setcancelstate.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_setcancelstate.3 -------------------------------------------------------------------------------- /man/pthread_setname_np.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_setname_np.3 -------------------------------------------------------------------------------- /man/pthread_setspecific.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_setspecific.3 -------------------------------------------------------------------------------- /man/pthread_sigmask.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_sigmask.2 -------------------------------------------------------------------------------- /man/pthread_threadid_np.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_threadid_np.3 -------------------------------------------------------------------------------- /man/pthread_yield_np.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/man/pthread_yield_np.3 -------------------------------------------------------------------------------- /private/pthread/dependency_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/private/pthread/dependency_private.h -------------------------------------------------------------------------------- /private/pthread/introspection_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/private/pthread/introspection_private.h -------------------------------------------------------------------------------- /private/pthread/jit_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/private/pthread/jit_private.h -------------------------------------------------------------------------------- /private/pthread/posix_sched.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/private/pthread/posix_sched.h -------------------------------------------------------------------------------- /private/pthread/private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/private/pthread/private.h -------------------------------------------------------------------------------- /private/pthread/qos_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/private/pthread/qos_private.h -------------------------------------------------------------------------------- /private/pthread/spinlock_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/private/pthread/spinlock_private.h -------------------------------------------------------------------------------- /private/pthread/tsd_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/private/pthread/tsd_private.h -------------------------------------------------------------------------------- /private/pthread/workgroup_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/private/pthread/workgroup_private.h -------------------------------------------------------------------------------- /private/pthread/workqueue_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/private/pthread/workqueue_private.h -------------------------------------------------------------------------------- /private/sys/qos_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/private/sys/qos_private.h -------------------------------------------------------------------------------- /src/exports_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/src/exports_internal.h -------------------------------------------------------------------------------- /src/imports_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/src/imports_internal.h -------------------------------------------------------------------------------- /src/inline_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/src/inline_internal.h -------------------------------------------------------------------------------- /src/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/src/internal.h -------------------------------------------------------------------------------- /src/offsets_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/src/offsets_internal.h -------------------------------------------------------------------------------- /src/plockstat.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/src/plockstat.d -------------------------------------------------------------------------------- /src/prototypes_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/src/prototypes_internal.h -------------------------------------------------------------------------------- /src/pthread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/src/pthread.c -------------------------------------------------------------------------------- /src/pthread_asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/src/pthread_asm.s -------------------------------------------------------------------------------- /src/pthread_atfork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/src/pthread_atfork.c -------------------------------------------------------------------------------- /src/pthread_cancelable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/src/pthread_cancelable.c -------------------------------------------------------------------------------- /src/pthread_cond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/src/pthread_cond.c -------------------------------------------------------------------------------- /src/pthread_cwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/src/pthread_cwd.c -------------------------------------------------------------------------------- /src/pthread_dependency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/src/pthread_dependency.c -------------------------------------------------------------------------------- /src/pthread_mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/src/pthread_mutex.c -------------------------------------------------------------------------------- /src/pthread_rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/src/pthread_rwlock.c -------------------------------------------------------------------------------- /src/pthread_tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/src/pthread_tsd.c -------------------------------------------------------------------------------- /src/qos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/src/qos.c -------------------------------------------------------------------------------- /src/resolver/resolver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/src/resolver/resolver.c -------------------------------------------------------------------------------- /src/resolver/resolver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/src/resolver/resolver.h -------------------------------------------------------------------------------- /src/resolver/resolver_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/src/resolver/resolver_internal.h -------------------------------------------------------------------------------- /src/types_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/src/types_internal.h -------------------------------------------------------------------------------- /src/variants/pthread_cancelable_cancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/src/variants/pthread_cancelable_cancel.c -------------------------------------------------------------------------------- /tests/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/Makefile -------------------------------------------------------------------------------- /tests/add_timer_termination.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/add_timer_termination.c -------------------------------------------------------------------------------- /tests/atfork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/atfork.c -------------------------------------------------------------------------------- /tests/bsdthread_set_self.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/bsdthread_set_self.c -------------------------------------------------------------------------------- /tests/com.apple.libpthread.tests.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/com.apple.libpthread.tests.plist -------------------------------------------------------------------------------- /tests/cond.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/cond.c -------------------------------------------------------------------------------- /tests/cond_hang3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/cond_hang3.c -------------------------------------------------------------------------------- /tests/cond_prepost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/cond_prepost.c -------------------------------------------------------------------------------- /tests/cond_stress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/cond_stress.c -------------------------------------------------------------------------------- /tests/cond_timed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/cond_timed.c -------------------------------------------------------------------------------- /tests/custom_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/custom_stack.c -------------------------------------------------------------------------------- /tests/darwintest_defaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/darwintest_defaults.h -------------------------------------------------------------------------------- /tests/detach.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/detach.c -------------------------------------------------------------------------------- /tests/helpers/libpthreadjittest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/helpers/libpthreadjittest.c -------------------------------------------------------------------------------- /tests/helpers/pthread_jit_write_with_callback_tool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/helpers/pthread_jit_write_with_callback_tool.c -------------------------------------------------------------------------------- /tests/helpers/stackoverflow_crash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/helpers/stackoverflow_crash.c -------------------------------------------------------------------------------- /tests/join.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/join.c -------------------------------------------------------------------------------- /tests/main_stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/main_stack.c -------------------------------------------------------------------------------- /tests/main_stack_custom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/main_stack_custom.c -------------------------------------------------------------------------------- /tests/main_stack_legacy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/main_stack_legacy.c -------------------------------------------------------------------------------- /tests/maxwidth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/maxwidth.c -------------------------------------------------------------------------------- /tests/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/mutex.c -------------------------------------------------------------------------------- /tests/mutex_prepost.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/mutex_prepost.c -------------------------------------------------------------------------------- /tests/mutex_try.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/mutex_try.c -------------------------------------------------------------------------------- /tests/once_cancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/once_cancel.c -------------------------------------------------------------------------------- /tests/perf_contended_mutex_rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/perf_contended_mutex_rwlock.c -------------------------------------------------------------------------------- /tests/pthread_attr_setstacksize.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/pthread_attr_setstacksize.c -------------------------------------------------------------------------------- /tests/pthread_bulk_create.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/pthread_bulk_create.c -------------------------------------------------------------------------------- /tests/pthread_cancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/pthread_cancel.c -------------------------------------------------------------------------------- /tests/pthread_create_from_mach_thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/pthread_create_from_mach_thread.c -------------------------------------------------------------------------------- /tests/pthread_cwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/pthread_cwd.c -------------------------------------------------------------------------------- /tests/pthread_dependency.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/pthread_dependency.c -------------------------------------------------------------------------------- /tests/pthread_exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/pthread_exit.c -------------------------------------------------------------------------------- /tests/pthread_get_qos_class_np.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/pthread_get_qos_class_np.c -------------------------------------------------------------------------------- /tests/pthread_introspection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/pthread_introspection.c -------------------------------------------------------------------------------- /tests/pthread_jit_write_freeze_callbacks-ios-entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/pthread_jit_write_freeze_callbacks-ios-entitlements.plist -------------------------------------------------------------------------------- /tests/pthread_jit_write_freeze_callbacks-macos-entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/pthread_jit_write_freeze_callbacks-macos-entitlements.plist -------------------------------------------------------------------------------- /tests/pthread_jit_write_freeze_callbacks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/pthread_jit_write_freeze_callbacks.c -------------------------------------------------------------------------------- /tests/pthread_jit_write_lockdown-entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/pthread_jit_write_lockdown-entitlements.plist -------------------------------------------------------------------------------- /tests/pthread_jit_write_lockdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/pthread_jit_write_lockdown.c -------------------------------------------------------------------------------- /tests/pthread_jit_write_protection-entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/pthread_jit_write_protection-entitlements.plist -------------------------------------------------------------------------------- /tests/pthread_jit_write_protection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/pthread_jit_write_protection.c -------------------------------------------------------------------------------- /tests/pthread_jit_write_test_inline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/pthread_jit_write_test_inline.h -------------------------------------------------------------------------------- /tests/pthread_jit_write_with_callback-ios-entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/pthread_jit_write_with_callback-ios-entitlements.plist -------------------------------------------------------------------------------- /tests/pthread_jit_write_with_callback-macos-entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/pthread_jit_write_with_callback-macos-entitlements.plist -------------------------------------------------------------------------------- /tests/pthread_jit_write_with_callback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/pthread_jit_write_with_callback.c -------------------------------------------------------------------------------- /tests/pthread_setspecific.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/pthread_setspecific.c -------------------------------------------------------------------------------- /tests/pthread_threadid_np.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/pthread_threadid_np.c -------------------------------------------------------------------------------- /tests/qos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/qos.c -------------------------------------------------------------------------------- /tests/rdar_32848402.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/rdar_32848402.c -------------------------------------------------------------------------------- /tests/rwlock-22244050.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/rwlock-22244050.c -------------------------------------------------------------------------------- /tests/rwlock-signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/rwlock-signal.c -------------------------------------------------------------------------------- /tests/rwlock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/rwlock.c -------------------------------------------------------------------------------- /tests/setrlimit_sigsegv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/setrlimit_sigsegv.c -------------------------------------------------------------------------------- /tests/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/stack.c -------------------------------------------------------------------------------- /tests/stack_aslr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/stack_aslr.c -------------------------------------------------------------------------------- /tests/stack_size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/stack_size.c -------------------------------------------------------------------------------- /tests/tsd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/tsd.c -------------------------------------------------------------------------------- /tests/wq_block_handoff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/wq_block_handoff.c -------------------------------------------------------------------------------- /tests/wq_cooperative.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/wq_cooperative.c -------------------------------------------------------------------------------- /tests/wq_event_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/wq_event_manager.c -------------------------------------------------------------------------------- /tests/wq_kevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/wq_kevent.c -------------------------------------------------------------------------------- /tests/wq_kevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/wq_kevent.h -------------------------------------------------------------------------------- /tests/wq_kevent_stress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/wq_kevent_stress.c -------------------------------------------------------------------------------- /tests/wq_limits.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tests/wq_limits.c -------------------------------------------------------------------------------- /tools/locktrace.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tools/locktrace.lua -------------------------------------------------------------------------------- /tools/pthtrace.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/tools/pthtrace.lua -------------------------------------------------------------------------------- /xcodescripts/eos.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/xcodescripts/eos.xcconfig -------------------------------------------------------------------------------- /xcodescripts/install-codes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/xcodescripts/install-codes.sh -------------------------------------------------------------------------------- /xcodescripts/install-lldbmacros.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/xcodescripts/install-lldbmacros.sh -------------------------------------------------------------------------------- /xcodescripts/install-manpages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/xcodescripts/install-manpages.sh -------------------------------------------------------------------------------- /xcodescripts/install-symlinks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/xcodescripts/install-symlinks.sh -------------------------------------------------------------------------------- /xcodescripts/install-sys-headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/xcodescripts/install-sys-headers.sh -------------------------------------------------------------------------------- /xcodescripts/kext.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/xcodescripts/kext.xcconfig -------------------------------------------------------------------------------- /xcodescripts/kext_development.xcconfig: -------------------------------------------------------------------------------- 1 | DEBUG = YES 2 | 3 | #include "kext.xcconfig" 4 | -------------------------------------------------------------------------------- /xcodescripts/pthread-i386.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/xcodescripts/pthread-i386.aliases -------------------------------------------------------------------------------- /xcodescripts/pthread-tapi.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/xcodescripts/pthread-tapi.xcconfig -------------------------------------------------------------------------------- /xcodescripts/pthread.aliases: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/xcodescripts/pthread.aliases -------------------------------------------------------------------------------- /xcodescripts/pthread.dirty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/xcodescripts/pthread.dirty -------------------------------------------------------------------------------- /xcodescripts/pthread.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/xcodescripts/pthread.xcconfig -------------------------------------------------------------------------------- /xcodescripts/pthread_driverkit.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/xcodescripts/pthread_driverkit.xcconfig -------------------------------------------------------------------------------- /xcodescripts/pthread_introspection.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/xcodescripts/pthread_introspection.xcconfig -------------------------------------------------------------------------------- /xcodescripts/resolved.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/xcodescripts/resolved.xcconfig -------------------------------------------------------------------------------- /xcodescripts/resolver.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/xcodescripts/resolver.xcconfig -------------------------------------------------------------------------------- /xcodescripts/run-on-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/xcodescripts/run-on-install.sh -------------------------------------------------------------------------------- /xcodescripts/static.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apple-oss-distributions/libpthread/HEAD/xcodescripts/static.xcconfig --------------------------------------------------------------------------------