nuttx/libs/libc/pthread
Xiang Xiao dfa0283d83 spinlock: Rename spin_islocked to spin_is_locked
align with Linux naming style

Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
2023-10-06 20:03:19 -04:00
..
CMakeLists.txt cmake: fix CMake build break 2023-07-15 23:32:36 +08:00
Kconfig libs/pthread/pthread_atfork: fulfill implement pthread_atfork function 2023-07-26 10:41:52 +02:00
Make.defs libc/pthread: add pthread_attr_set/getscope 2023-07-28 20:55:22 -07:00
pthread_atfork.c pthread_atfork: fix the incorrect description in comments 2023-07-26 04:51:13 -07:00
pthread_attr_destroy.c
pthread_attr_getaffinity.c
pthread_attr_getdetachstate.c
pthread_attr_getinheritsched.c
pthread_attr_getschedparam.c
pthread_attr_getschedpolicy.c
pthread_attr_getscope.c libc/pthread: add pthread_attr_set/getscope 2023-07-28 20:55:22 -07:00
pthread_attr_getstack.c
pthread_attr_getstackaddr.c
pthread_attr_getstacksize.c
pthread_attr_init.c
pthread_attr_setaffinity.c
pthread_attr_setdetachstate.c
pthread_attr_setinheritsched.c
pthread_attr_setschedparam.c
pthread_attr_setschedpolicy.c
pthread_attr_setscope.c libc/pthread: add pthread_attr_set/getscope 2023-07-28 20:55:22 -07:00
pthread_attr_setstack.c
pthread_attr_setstackaddr.c
pthread_attr_setstacksize.c
pthread_barrierattr_destroy.c
pthread_barrierattr_getpshared.c
pthread_barrierattr_init.c
pthread_barrierattr_setpshared.c
pthread_barrierdestroy.c
pthread_barrierinit.c
pthread_cleanup.c pthread_cleanup: rm sched_[un]lock 2023-09-20 00:44:19 +08:00
pthread_condattr_destroy.c
pthread_condattr_getclock.c
pthread_condattr_getpshared.c
pthread_condattr_init.c
pthread_condattr_setclock.c
pthread_condattr_setpshared.c
pthread_conddestroy.c
pthread_condinit.c
pthread_condtimedwait.c
pthread_create.c
pthread_exit.c tls: Move task_tls_alloc and task_tls_destruct to libc 2023-08-28 11:02:18 +03:00
pthread_get_stackaddr_np.c
pthread_get_stacksize_np.c
pthread_getcpuclockid.c libs/libc/pthread: add the implementation of pthread_getcpuclockid 2023-07-10 13:40:49 +08:00
pthread_getname_np.c
pthread_getspecific.c tls: Move task_tls_alloc and task_tls_destruct to libc 2023-08-28 11:02:18 +03:00
pthread_keycreate.c tls: Move task_tls_alloc and task_tls_destruct to libc 2023-08-28 11:02:18 +03:00
pthread_keydelete.c tls: Move task_tls_alloc and task_tls_destruct to libc 2023-08-28 11:02:18 +03:00
pthread_kill.c
pthread_mutex_lock.c
pthread_mutexattr_destroy.c
pthread_mutexattr_getprotocol.c
pthread_mutexattr_getpshared.c
pthread_mutexattr_getrobust.c
pthread_mutexattr_gettype.c
pthread_mutexattr_init.c
pthread_mutexattr_setprotocol.c
pthread_mutexattr_setpshared.c
pthread_mutexattr_setrobust.c
pthread_mutexattr_settype.c
pthread_once.c pthread_once: g_lock may lead deadlock 2023-09-26 10:13:00 +08:00
pthread_rwlock_rdlock.c
pthread_rwlock_wrlock.c
pthread_rwlock.c libc/pthread: remove unsed compare code in pthread_rwlock_init() 2023-07-11 13:29:37 +08:00
pthread_rwlockattr_destroy.c
pthread_rwlockattr_getpshared.c
pthread_rwlockattr_init.c
pthread_rwlockattr_setpshared.c
pthread_setcancelstate.c
pthread_setcanceltype.c libs/libc/pthread: correct description on pthread_setcanceltype 2023-09-16 14:17:47 +08:00
pthread_setname_np.c
pthread_setspecific.c tls: Move task_tls_alloc and task_tls_destruct to libc 2023-08-28 11:02:18 +03:00
pthread_spinlock.c spinlock: Rename spin_islocked to spin_is_locked 2023-10-06 20:03:19 -04:00
pthread_testcancel.c
pthread_yield.c