mirror of
https://github.com/fluencelabs/musl
synced 2025-06-28 06:02:04 +00:00
there is a resource limit of 0 bits to store the concurrency level requested. thus any positive level exceeds a resource limit, resulting in EAGAIN. :-)
7 lines
66 B
C
7 lines
66 B
C
#include <pthread.h>
|
|
|
|
int pthread_getconcurrency()
|
|
{
|
|
return 0;
|
|
}
|