diff options
Diffstat (limited to 'sysdeps/mach')
-rw-r--r-- | sysdeps/mach/hurd/getpriority.c | 9 | ||||
-rw-r--r-- | sysdeps/mach/hurd/setpriority.c | 4 |
2 files changed, 7 insertions, 6 deletions
diff --git a/sysdeps/mach/hurd/getpriority.c b/sysdeps/mach/hurd/getpriority.c index 5b24ce23f8..933592fe8e 100644 --- a/sysdeps/mach/hurd/getpriority.c +++ b/sysdeps/mach/hurd/getpriority.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994 Free Software Foundation, Inc. +/* Copyright (C) 1994, 1995 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -41,8 +41,8 @@ getpriority (enum __priority_which which, int who) { int *oldpi = pi; unsigned int oldpisize = pisize; - onerr = __USEPORT (PROC, __proc_getprocinfo (port, - pid, + onerr = __USEPORT (PROC, __proc_getprocinfo (port, pid, + PI_FETCH_TASKINFO, &pi, &pisize)); if (pi != oldpi && oldpi != pibuf) /* Old buffer from last call was not reused; free it. */ @@ -56,7 +56,8 @@ getpriority (enum __priority_which which, int who) } onerr = 0; - err = _hurd_priority_which_map (which, who, getonepriority); + err = _hurd_priority_which_map (which, who, + getonepriority, PI_FETCH_TASKINFO); if (pi != pibuf) __vm_deallocate (__mach_task_self (), diff --git a/sysdeps/mach/hurd/setpriority.c b/sysdeps/mach/hurd/setpriority.c index 644bfdf6fe..4d2e3f3591 100644 --- a/sysdeps/mach/hurd/setpriority.c +++ b/sysdeps/mach/hurd/setpriority.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1994 Free Software Foundation, Inc. +/* Copyright (C) 1994, 1995 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -67,7 +67,7 @@ setpriority (enum __priority_which which, int who, int prio) npids = ntasks = nwin = nperm = nacces = 0; pidloser = priloser = 0; - err = _hurd_priority_which_map (which, who, setonepriority); + err = _hurd_priority_which_map (which, who, setonepriority, 0); if (!err && npids == 0) /* No error, but no pids found. */ |