summaryrefslogtreecommitdiff
path: root/sem_init.c
diff options
context:
space:
mode:
authorrpj <rpj>2003-09-02 16:15:05 +0000
committerrpj <rpj>2003-09-02 16:15:05 +0000
commit879bb0613c03b10bdf91aa862c2463b7f9f99087 (patch)
tree6e91c26a0f16a0e4bfd3ed436f27e470b5db7307 /sem_init.c
parenta5f3d62017a8e705016d0083a24837d6a56f178d (diff)
Added cancelation of/from non-POSIX threads; minor fixes; minor changes.snap-2003-09-03
Diffstat (limited to 'sem_init.c')
-rw-r--r--sem_init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sem_init.c b/sem_init.c
index 5dcb88e..4841530 100644
--- a/sem_init.c
+++ b/sem_init.c
@@ -114,8 +114,8 @@ sem_init (sem_t * sem, int pshared, unsigned int value)
{
s->value = value;
s->event = CreateEvent (NULL,
- FALSE, /* manual reset */
- FALSE, /* initial state */
+ PTW32_FALSE, /* manual reset */
+ PTW32_FALSE, /* initial state */
NULL);
if (0 == s->event)