mirror of
https://github.com/fluencelabs/musl
synced 2025-05-29 07:31:53 +00:00
8 lines
142 B
C
8 lines
142 B
C
#include "pthread_impl.h"
|
|
|
|
int pthread_condattr_getclock(const pthread_condattr_t *a, clockid_t *clk)
|
|
{
|
|
*clk = *a & 0x7fffffff;
|
|
return 0;
|
|
}
|