From 943dffc85dad21cd3b1da82cb012bff10f949dc3 Mon Sep 17 00:00:00 2001 From: Max Khon Date: Tue, 22 Oct 2002 17:11:49 +0000 Subject: [PATCH] fix pthread_suspend/resume_all_np() declarations Approved by: deischen --- include/pthread_np.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/pthread_np.h b/include/pthread_np.h index b49bd37388f..44c61aa9d6d 100644 --- a/include/pthread_np.h +++ b/include/pthread_np.h @@ -48,11 +48,11 @@ int pthread_main_np(void); int pthread_multi_np(void); int pthread_mutexattr_getkind_np(pthread_mutexattr_t); int pthread_mutexattr_setkind_np(pthread_mutexattr_t *, int); -int pthread_resume_all_np(void); +void pthread_resume_all_np(void); int pthread_resume_np(pthread_t); void pthread_set_name_np(pthread_t, const char *); int pthread_single_np(void); -int pthread_suspend_all_np(void); +void pthread_suspend_all_np(void); int pthread_suspend_np(pthread_t); int pthread_switch_add_np(pthread_switch_routine_t); int pthread_switch_delete_np(pthread_switch_routine_t);