summaryrefslogtreecommitdiff
path: root/threading.h
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-11-30 21:49:37 +0100
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2009-11-30 21:49:37 +0100
commit9155bd34e06af07863b681f7125a51829e622950 (patch)
treed61e03fb3cf7a49294562fdbd6f52896e7f83e18 /threading.h
parent7e20827fce4ac2609a834329e16fad363c58a201 (diff)
sanitized thread_start API
Diffstat (limited to 'threading.h')
-rw-r--r--threading.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/threading.h b/threading.h
index 2e986b59..51a72f74 100644
--- a/threading.h
+++ b/threading.h
@@ -21,7 +21,7 @@
#include <stdint.h>
intptr_t
-thread_start (void (*fn)(uintptr_t ctx), uintptr_t ctx);
+thread_start (void (*fn)(void *ctx), void *ctx);
int
thread_join (intptr_t tid);