summaryrefslogtreecommitdiff
path: root/libnetfs
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1996-02-09 01:46:16 +0000
committerMichael I. Bushnell <mib@gnu.org>1996-02-09 01:46:16 +0000
commit6649521f3fcef0616bab8e6b2752814f09697980 (patch)
tree0032bf7d113b7c7725a01b973d522f5b6f14ae43 /libnetfs
parent0b613f504541ae2efd90372419c03efb1d231075 (diff)
entered into RCS
Diffstat (limited to 'libnetfs')
-rw-r--r--libnetfs/init-loop.c11
1 files changed, 2 insertions, 9 deletions
diff --git a/libnetfs/init-loop.c b/libnetfs/init-loop.c
index 20a18d8a..921b3924 100644
--- a/libnetfs/init-loop.c
+++ b/libnetfs/init-loop.c
@@ -23,8 +23,8 @@
static int thread_timeout = 1000 * 60 * 2; /* two minutes */
static int server_timeout = 1000 * 60 * 10; /* ten minutes */
-static any_t
-master_thread_function (any_t foo __attribute__ ((unused)))
+void
+netfs_server_loop ()
{
error_t err;
@@ -42,10 +42,3 @@ master_thread_function (any_t foo __attribute__ ((unused)))
exit (0);
}
-void
-netfs_server_loop (void)
-{
- cthread_detach (cthread_fork ((cthread_fn_t) master_thread_function,
- (any_t) 0));
-}
-