summaryrefslogtreecommitdiff
path: root/pthread_once.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 /pthread_once.c
parenta5f3d62017a8e705016d0083a24837d6a56f178d (diff)
Added cancelation of/from non-POSIX threads; minor fixes; minor changes.snap-2003-09-03
Diffstat (limited to 'pthread_once.c')
-rw-r--r--pthread_once.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pthread_once.c b/pthread_once.c
index 9446863..b698d68 100644
--- a/pthread_once.c
+++ b/pthread_once.c
@@ -97,7 +97,7 @@ pthread_once (
* First thread to increment the started variable
*/
(*init_routine) ();
- once_control->done = TRUE;
+ once_control->done = PTW32_TRUE;
}
else