diff options
-rw-r--r-- | ext2fs/ext2fs.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/ext2fs/ext2fs.c b/ext2fs/ext2fs.c index de4e15f6..6a4c7513 100644 --- a/ext2fs/ext2fs.c +++ b/ext2fs/ext2fs.c @@ -306,10 +306,15 @@ 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 so we die, leaving others to do the real work. */ + cthread_exit (0); } +/* Dummy */ +void +thread_cancel (thread_t foo __attribute__ ((unused))) +{ +} void diskfs_init_completed () |