summaryrefslogtreecommitdiff
path: root/libc/test/src/pthread/pthread_condattr_test.cpp
AgeCommit message (Collapse)Author
2024-04-19[libc] fixup nascent pthread_condattr_test (#89308)Nick Desaulniers
- use namespaced identifiers - add corresponding headers for namespaced declarations - replace time.h and errno.h with finer grain includes - update cmake Fixes: #88987 Fixes: #89261 Link: #88997 Link: #89262
2024-04-17[libc][POSIX][pthreads] implement pthread_condattr_t functions (#88987)Nick Desaulniers
Implement: - pthread_condattr_destroy - pthread_condattr_getclock - pthread_condattr_getpshared - pthread_condattr_init - pthread_condattr_setclock - pthread_condattr_setpshared Fixes: #88581