From f5b9bdb93d076d6fff8e8cb99cc668e107e9c364 Mon Sep 17 00:00:00 2001 From: Robert James Kaes Date: Fri, 7 Sep 2001 04:20:04 +0000 Subject: Fixed up return types. --- src/thread.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/thread.h b/src/thread.h index 94b60fa..2c6b771 100644 --- a/src/thread.h +++ b/src/thread.h @@ -1,4 +1,4 @@ -/* $Id: thread.h,v 1.2 2001-05-27 02:33:35 rjkaes Exp $ +/* $Id: thread.h,v 1.3 2001-09-07 04:20:04 rjkaes Exp $ * * See 'thread.c' for more information. * @@ -26,11 +26,11 @@ typedef enum { THREAD_MAXREQUESTSPERCHILD } thread_config_t; -extern int thread_pool_create(void); +extern short int thread_pool_create(void); extern int thread_listening_sock(uint16_t port); extern void thread_close_sock(void); -extern int thread_main_loop(void); +extern void thread_main_loop(void); -extern int thread_configure(thread_config_t type, unsigned int val); +extern short int thread_configure(thread_config_t type, unsigned int val); #endif -- cgit v1.2.3