zig/lib/libc/wasi/thread-stub/pthread_mutex_consistent.c
2025-08-20 19:18:11 +02:00

9 lines
170 B
C
Vendored

#include "pthread_impl.h"
int pthread_mutex_consistent(pthread_mutex_t *m)
{
/* cannot be a robust mutex, as they're entirely unsupported in WASI */
return EINVAL;
}