summaryrefslogtreecommitdiff
path: root/libc/test/src/__support/time/linux/timeout_test.cpp
AgeCommit message (Collapse)Author
2024-07-04[libc] Fix compilation warnings on 32-bit archs (#97745)Mikhail R. Gadelha
timespec's tv_nsec is a long int, which has different sizes in 32-bit and 64-bit platforms, so this patch adds one and fixes another static_cast throw warnings in 32-bit archs
2024-05-13[libc] add timeout and clock conversion utilities (#91905)Schrodinger ZHU Yifan
This PR: - Make `clock_gettime` a header-only library - Add `clock_conversion` header library to allow conversion between clocks relative to the time of call - Add `timeout` header library to manage the absolute timeout used in POSIX's timed locking/waiting APIs