diff options
-rw-r--r-- | libdiskfs/init-first.c | 3 | ||||
-rw-r--r-- | libdiskfs/init-loop.c | 2 | ||||
-rw-r--r-- | libdiskfs/ports-consts.c | 1 |
3 files changed, 3 insertions, 3 deletions
diff --git a/libdiskfs/init-first.c b/libdiskfs/init-first.c index 6b0aee4e..ca4b2287 100644 --- a/libdiskfs/init-first.c +++ b/libdiskfs/init-first.c @@ -24,6 +24,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ void diskfs_spawn_first_thread (void) { - cthread_detach (cthread_fork ((cthread_fn_t) ports_manage_port_operations, + cthread_detach (cthread_fork ((cthread_fn_t) + ports_manage_port_operations_multithread, (any_t) 0)); } diff --git a/libdiskfs/init-loop.c b/libdiskfs/init-loop.c index 0f61f9be..d0aa0413 100644 --- a/libdiskfs/init-loop.c +++ b/libdiskfs/init-loop.c @@ -24,5 +24,5 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ void diskfs_main_request_loop (void) { - ports_manage_port_operations (); + ports_manage_port_operations_multithread (); } diff --git a/libdiskfs/ports-consts.c b/libdiskfs/ports-consts.c index 6cdeeda5..c2726c4c 100644 --- a/libdiskfs/ports-consts.c +++ b/libdiskfs/ports-consts.c @@ -17,5 +17,4 @@ /* ports_wire_threads is set in init-init.c. */ -int ports_use_multiple_threads = 1; int ports_wire_cthreads = 1; |