mirror of
https://github.com/ziglang/zig.git
synced 2025-12-22 06:03:16 +00:00
also start prefering NtDll API. so far: * NtQueryInformationFile * NtClose adds a performance workaround for windows unicode conversion. but that should probably be removed before merging
14 lines
335 B
C
14 lines
335 B
C
#include <threads.h>
|
|
#include <pthread.h>
|
|
#include <errno.h>
|
|
|
|
int mtx_timedlock(mtx_t *restrict m, const struct timespec *restrict ts)
|
|
{
|
|
int ret = __pthread_mutex_timedlock((pthread_mutex_t *)m, ts);
|
|
switch (ret) {
|
|
default: return thrd_error;
|
|
case 0: return thrd_success;
|
|
case ETIMEDOUT: return thrd_timedout;
|
|
}
|
|
}
|