1234567891011121314151617181920212223242526272829303132333435363738394041 |
- #include <errno.h>
- #include "pthreadP.h"
- int __concurrency_level;
- int
- pthread_setconcurrency (level)
- int level;
- {
- if (level < 0)
- return EINVAL;
- __concurrency_level = level;
-
- return 0;
- }
|