diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-06-19 21:22:17 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-06-19 21:22:17 +0000 |
commit | e15a45e140883290d703b3337ebce412c4c1a234 (patch) | |
tree | 188ce8e3a9f4e611bb9c006018c1721c19135d66 /libfshelp | |
parent | f0c66d8cc0570b65e2088305f90e55156998cc8a (diff) |
(fshelp_set_active): Don't do GOAWAY parm.
Diffstat (limited to 'libfshelp')
-rw-r--r-- | libfshelp/set-active.c | 31 |
1 files changed, 1 insertions, 30 deletions
diff --git a/libfshelp/set-active.c b/libfshelp/set-active.c index 5cf3ec38..b2f49cf4 100644 --- a/libfshelp/set-active.c +++ b/libfshelp/set-active.c @@ -24,40 +24,11 @@ error_t fshelp_set_active (struct transbox *box, mach_port_t active, - int excl, int goaway, int flags) + int excl) { - error_t error; - - start_over: if (excl && box->active != MACH_PORT_NULL) return EBUSY; - if (goaway && box->active != MACH_PORT_NULL) - { - fsys_t control; - - error = fshelp_fetch_control (box, &control); - if (error) - return error; - - mutex_unlock (box->lock); - error = fsys_goaway (control, flags); - mutex_lock (box->lock); - if (error) - { - mach_port_deallocate (mach_task_self (), control); - return error; - } - - /* If it changed while we were unlocked, better start over. */ - if (box->active != control) - { - mach_port_deallocate (mach_task_self (), control); - goto start_over; - } - mach_port_deallocate (mach_task_self (), control); - } - if (box->active != MACH_PORT_NULL) mach_port_deallocate (mach_task_self (), box->active); |