diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-06-22 15:41:01 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-06-22 15:41:01 +0000 |
commit | 6add63967766c1078cd6c8962371c284057a192d (patch) | |
tree | 4172f3032b248d91feedb2b30e4e1504a9f92860 /ufs/main.c | |
parent | 8cced7ac1796db55319a593bb60586f68d567ecb (diff) |
(main): Have main thread exit when done instead of calling a diskfs
function.
Diffstat (limited to 'ufs/main.c')
-rw-r--r-- | ufs/main.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,5 +1,5 @@ /* - Copyright (C) 1994 Free Software Foundation + Copyright (C) 1994, 1995 Free Software Foundation This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -261,8 +261,8 @@ main (int argc, char **argv) /* We are the bootstrap filesystem; do special boot-time setup. */ diskfs_start_bootstrap (argv); - /* Now become a generic request thread. */ - diskfs_main_request_loop (); + /* And this thread is done with its work. */ + cthread_exit (0); } |