diff options
author | rpj <rpj> | 1998-07-12 15:55:40 +0000 |
---|---|---|
committer | rpj <rpj> | 1998-07-12 15:55:40 +0000 |
commit | 4896eb26a6c8fc24e8d12a180f3a10027abb4127 (patch) | |
tree | eb759d5b67445d99ff27759d87cece5e0437e269 /implement.h | |
parent | 81fc28d29a37bf2906025a5648e92a6503479e97 (diff) |
See the ChangeLog.
Diffstat (limited to 'implement.h')
-rw-r--r-- | implement.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/implement.h b/implement.h index 1df2e11..2e8cbca 100644 --- a/implement.h +++ b/implement.h @@ -1,14 +1,16 @@ /* * implement.h * - * Things that do not belong in pthread.h but may be needed - * by other parts of this pthreads implementation internally. + * Implementation specific (non API) stuff. */ +#ifndef _IMPLEMENT_H +#define _IMPLEMENT_H + /* FIXME: Arbitrary. Need values from Win32. */ #define PTHREAD_THREADS_MAX 256 -#define PTHREAD_STACK_MIN 65535 +#define PTHREAD_STACK_MIN 65535 extern DWORD pthreads_thread_count; @@ -23,3 +25,5 @@ typedef struct { typedef struct { int pshared; } _pthread_condattr_t; + +#endif /* _IMPLEMENT_H */ |