]> git.ipfire.org Git - thirdparty/glibc.git/blob - hurd/hurd/resource.h
Update copyright dates with scripts/update-copyrights.
[thirdparty/glibc.git] / hurd / hurd / resource.h
1 /* Resource limits for the Hurd.
2 Copyright (C) 1994-2016 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
9
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
14
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <http://www.gnu.org/licenses/>. */
18
19 #ifndef _HURD_RESOURCE_H
20 #define _HURD_RESOURCE_H
21
22 #include <sys/types.h>
23 #include <sys/resource.h>
24 #include <errno.h>
25 #include <hurd/process.h>
26
27 /* This array contains the current resource limits for the process. */
28 extern struct rlimit _hurd_rlimits[RLIM_NLIMITS];
29 extern struct mutex _hurd_rlimit_lock; /* Locks _hurd_rlimits. */
30
31
32 /* Helper function for getpriority and setpriority. Maps FN over all the
33 processes specified by WHICH and WHO. PI is non-null if a
34 proc_getprocinfo was already done; FN may use *PI arbitrarily, it is
35 reset on the next call; PI_FLAGS is passed to proc_getprocinfo. Returns
36 FN's result the first time it returns nonzero. If FN never returns
37 nonzero, this returns zero. */
38 extern error_t _hurd_priority_which_map (enum __priority_which which, int who,
39 error_t (*fn) (pid_t pid,
40 struct procinfo *pi),
41 int pi_flags);
42
43 /* Convert between Mach priority values and the priority
44 values used by getpriority, setpriority, and nice. */
45 #define MACH_PRIORITY_TO_NICE(prio) ((prio) - 25)
46 #define NICE_TO_MACH_PRIORITY(nice) ((nice) + 25)
47
48
49
50
51 #endif