diff options
Diffstat (limited to 'linuxthreads/Examples/ex13.c')
-rw-r--r-- | linuxthreads/Examples/ex13.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linuxthreads/Examples/ex13.c b/linuxthreads/Examples/ex13.c index 3a0347993a..af95358297 100644 --- a/linuxthreads/Examples/ex13.c +++ b/linuxthreads/Examples/ex13.c @@ -32,7 +32,7 @@ struct thr_ctrl int retval; }; -void +static void dump_mut (pthread_mutex_t * mut) { int i; @@ -43,7 +43,7 @@ dump_mut (pthread_mutex_t * mut) }; /* Helper, the opposite of pthread_cond_wait (cond, mut). */ -void +static void pthr_cond_signal_mutex (pthread_cond_t * cond, pthread_mutex_t * mut) { int err; @@ -59,7 +59,7 @@ pthr_cond_signal_mutex (pthread_cond_t * cond, pthread_mutex_t * mut) } -void * +static void * thread_start (void *ptr) { struct thr_ctrl *tc = ptr; |