blob: 4d2ac1940d4fda87a8f5020693fbde7543fa2f09 (
plain) (
blame)
1
2
3
4
5
6
|
#include <ldsodefs.h>
#include "pthread.h"
#include "internals.h"
/* Array of active threads. Entry 0 is reserved for the initial thread. */
struct pthread_handle_struct __pthread_handles[PTHREAD_THREADS_MAX];
|