diff options
author | Thomas Bushnell, BSG <thomas@gnu.org> | 1994-12-20 18:37:24 +0000 |
---|---|---|
committer | Thomas Bushnell, BSG <thomas@gnu.org> | 1994-12-20 18:37:24 +0000 |
commit | 1ded40d111284107f8360308d05b54277e34a7bd (patch) | |
tree | 928fa79ba9c89a681ae71f85da570c01a9bd364d | |
parent | 2e6fbce5f661f4aba6074085e609267f141cf99d (diff) | |
download | glibc-1ded40d111284107f8360308d05b54277e34a7bd.tar.gz glibc-1ded40d111284107f8360308d05b54277e34a7bd.tar.xz glibc-1ded40d111284107f8360308d05b54277e34a7bd.zip |
(__setpgrp): Use __ version of swtch_pri.
-rw-r--r-- | sysdeps/mach/hurd/setpgid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/mach/hurd/setpgid.c b/sysdeps/mach/hurd/setpgid.c index 9db3db8d77..07102777a4 100644 --- a/sysdeps/mach/hurd/setpgid.c +++ b/sysdeps/mach/hurd/setpgid.c @@ -45,7 +45,7 @@ DEFUN(__setpgrp, (pid, pgid), pid_t pid AND pid_t pgid) /* XXX we have no need for a mutex, but cthreads demands one. */ __condition_wait (&_hurd_pids_changed_sync, NULL); #else - swtch_pri(0); + __swtch_pri(0); #endif } |