diff options
Diffstat (limited to 'kern/task.c')
-rw-r--r-- | kern/task.c | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/kern/task.c b/kern/task.c index 7b0e0e6..59b11ee 100644 --- a/kern/task.c +++ b/kern/task.c @@ -35,7 +35,6 @@ #include <mach_pcsample.h> #include <norma_task.h> #include <fast_tas.h> -#include <net_atm.h> #include <mach/machine/vm_types.h> #include <mach/vm_param.h> @@ -54,10 +53,6 @@ #include <vm/vm_kern.h> /* for kernel_map, ipc_kernel_map */ #include <machine/machspl.h> /* for splsched */ -#if NET_ATM -#include <chips/nw_mk.h> -#endif - #if NORMA_TASK #define task_create task_create_local #endif /* NORMA_TASK */ @@ -157,10 +152,6 @@ kern_return_t task_create( ipc_task_init(new_task, parent_task); -#if NET_ATM - new_task->nw_ep_owned = 0; -#endif - new_task->total_user_time.seconds = 0; new_task->total_user_time.microseconds = 0; new_task->total_system_time.seconds = 0; @@ -291,13 +282,6 @@ kern_return_t task_terminate( cur_task = current_task(); cur_thread = current_thread(); -#if NET_ATM - /* - * Shut down networking. - */ - mk_endpoint_collect(task); -#endif - /* * Deactivate task so that it can't be terminated again, * and so lengthy operations in progress will abort. |