musl-tcc/src/thread/pthread_setconcurrency.c

10 lines
150 B
C
Raw Permalink Normal View History

2022-03-20 08:48:53 +00:00
#include <pthread.h>
#include <errno.h>
int pthread_setconcurrency(int val)
{
if (val < 0) return EINVAL;
if (val > 0) return EAGAIN;
return 0;
}