Remove extra space at end of line.
[glibc.git] / sysdeps / posix / nice.c
blob2d907e80e479dd95fae3d8089de6f8a89d6edc04
1 /* Copyright (C) 1992-2018 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;
41 result = __setpriority (PRIO_PROCESS, 0, prio + incr);
42 if (result == -1)
44 if (errno == EACCES)
45 __set_errno (EPERM);
46 return -1;
49 __set_errno (save);
50 return __getpriority (PRIO_PROCESS, 0);