1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- #include "pthread.h"
- #include "implement.h"
- int
- pthread_num_processors_np (void)
- {
- int count;
- if (pte_getprocessors (&count) != 0)
- {
- count = 1;
- }
- return (count);
- }
|