From cdf8edb30ce5e0f75bea7a630783be1cff7a177b 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 --- src/thread/thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/thread/thread.h b/src/thread/thread.h index f032d304..33cdbe94 100644 --- a/src/thread/thread.h +++ b/src/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);