From 951996a8c5e05b07032e7b1e608be699e84c8056 Mon Sep 17 00:00:00 2001 From: Jack Moffitt Date: Sat, 20 Oct 2001 22:40:28 +0000 Subject: [PATCH] Fix header definition. svn path=/trunk/thread/; revision=2219 --- thread/thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/thread/thread.h b/thread/thread.h index f032d30..33cdbe9 100644 --- a/thread/thread.h +++ b/thread/thread.h @@ -106,7 +106,7 @@ void thread_initialize_with_log_id(int log_id); void thread_shutdown(void); /* creation, destruction, locking, unlocking, signalling and waiting */ -long thread_create_c(char *name, void *(*start_routine)(void *), void *arg, int detached, int line, char *file); +long thread_create_c(char *name, void *(*start_routine)(void *), void *arg, int stacksize, int detached, int line, char *file); void thread_mutex_create_c(mutex_t *mutex, int line, char *file); void thread_mutex_lock_c(mutex_t *mutex, int line, char *file); void thread_mutex_unlock_c(mutex_t *mutex, int line, char *file);