aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/wasi/thread-stub/pthread_mutex_consistent.c
blob: 639635361fb58ebb2cd9a8e1055d11b543b070ea (plain)
1
2
3
4
5
6
7
8
#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;

}