Meg's Mirrors
zig
about
heads
tags
log
tree
search
Search
zig
lib
libc
wasi
thread-stub
pthread_mutex_consistent.c
pretty
plain
permalink
blame
history
•
8 lines
•
170 B
1
#include "pthread_impl.h"
2
3
int pthread_mutex_consistent(pthread_mutex_t *m)
4
{
5
	/* cannot be a robust mutex, as they're entirely unsupported in WASI */
6
	return EINVAL;
7
8
}