summaryrefslogtreecommitdiff
path: root/implement.h
blob: 1df2e113ebbf04d2440c78a107bbf47eed7c76cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/*
 * implement.h
 *
 * Things that do not belong in pthread.h but may be needed
 * by other parts of this pthreads implementation internally.
 */

/* FIXME: Arbitrary. Need values from Win32.
 */
#define PTHREAD_THREADS_MAX 256
#define PTHREAD_STACK_MIN 65535

extern DWORD pthreads_thread_count;

typedef struct {
  size_t stacksize;
} _pthread_attr_t;

typedef struct {
  int pshared;
} _pthread_mutexattr_t;

typedef struct {
  int pshared;
} _pthread_condattr_t;