Update copyright notices with scripts/update-copyrights
[glibc.git] / sysdeps / posix / nice.c
blob087b22cced0ae4af02784950e535c531ca40ff50
1 /* Copyright (C) 1992-2014 Free Software Foundation, Inc.
2 This file is part of the GNU C Library.
4 The GNU C Library is free software; you can redistribute it and/or
5 modify it under the terms of the GNU Lesser General Public
6 License as published by the Free Software Foundation; either
7 version 2.1 of the License, or (at your option) any later version.
9 The GNU C Library is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 Lesser General Public License for more details.
14 You should have received a copy of the GNU Lesser General Public
15 License along with the GNU C Library; if not, see
16 <http://www.gnu.org/licenses/>. */
18 #include <errno.h>
19 #include <unistd.h>
20 #include <sys/resource.h>
22 /* Increment the scheduling priority of the calling process by INCR.
23 The superuser may use a negative INCR to decrement the priority. */
24 int
25 nice (int incr)
27 int save;
28 int prio;
29 int result;
31 /* -1 is a valid priority, so we use errno to check for an error. */
32 save = errno;
33 __set_errno (0);
34 prio = getpriority (PRIO_PROCESS, 0);
35 if (prio == -1)
37 if (errno != 0)
38 return -1;
39 else
40 __set_errno (save);
43 result = setpriority (PRIO_PROCESS, 0, prio + incr);
44 if (result == -1)
46 if (errno == EACCES)
47 errno = EPERM;
48 return -1;
50 return getpriority (PRIO_PROCESS, 0);