diff options
author | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-09-07 04:20:04 +0000 |
---|---|---|
committer | Robert James Kaes <rjkaes@users.sourceforge.net> | 2001-09-07 04:20:04 +0000 |
commit | f5b9bdb93d076d6fff8e8cb99cc668e107e9c364 (patch) | |
tree | 2e9b8fdce3be94275e2ca8aedd9b392f84fd1d46 /src | |
parent | ea1309bf73e398cc2f6f5a598a9ca1f880cb4459 (diff) | |
download | tinyproxy-f5b9bdb93d076d6fff8e8cb99cc668e107e9c364.tar.gz tinyproxy-f5b9bdb93d076d6fff8e8cb99cc668e107e9c364.zip |
Fixed up return types.
Diffstat (limited to '')
-rw-r--r-- | src/thread.h | 8 |
1 files changed, 4 insertions, 4 deletions
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 |