/*
 * 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;