summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael I. Bushnell <mib@gnu.org>1995-06-19 20:50:45 +0000
committerMichael I. Bushnell <mib@gnu.org>1995-06-19 20:50:45 +0000
commit8f149d5b934724aa1259fcfdc02bceb498513d69 (patch)
treedebce7d1d857c0608e12820e9c24b60f6708120c
parentd3d766365e9f20e4ecfaf91a2b548f563b616ecc (diff)
(fshelp_set_active): Don't frob obsolete innerlock.
-rw-r--r--libfshelp/set-active.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/libfshelp/set-active.c b/libfshelp/set-active.c
index 1671d09a..af5dcc89 100644
--- a/libfshelp/set-active.c
+++ b/libfshelp/set-active.c
@@ -24,11 +24,9 @@ error_t
fshelp_set_active (struct transbox *box,
mach_port_t active)
{
- mutex_lock (&box->innerlock); /* cancellation point XXX */
if (box->active != MACH_PORT_NULL)
mach_port_deallocate (mach_task_self (), box->active);
box->active = active;
- mutex_unlock (&box->innerlock);
return 0;
}