]> git.ipfire.org Git - thirdparty/glibc.git/blame - hurd/hurd/resource.h
Update to 2.1.x development version
[thirdparty/glibc.git] / hurd / hurd / resource.h
CommitLineData
28f540f4 1/* Resource limits for the Hurd.
c84142e8
UD
2 Copyright (C) 1994, 1995, 1997 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
28f540f4 4
c84142e8
UD
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Library General Public License as
7 published by the Free Software Foundation; either version 2 of the
8 License, or (at your option) any later version.
28f540f4 9
c84142e8
UD
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 Library General Public License for more details.
28f540f4 14
c84142e8
UD
15 You should have received a copy of the GNU Library General Public
16 License along with the GNU C Library; see the file COPYING.LIB. If not,
17 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
28f540f4
RM
19
20#ifndef _HURD_RESOURCE_H
21#define _HURD_RESOURCE_H
22
23#include <sys/types.h>
24#include <sys/resource.h>
25#include <errno.h>
26#include <hurd/process.h>
27
28/* This array contains the current resource limits for the process. */
29extern struct rlimit _hurd_rlimits[RLIM_NLIMITS];
30extern struct mutex _hurd_rlimit_lock; /* Locks _hurd_rlimits. */
31
32
33/* Helper function for getpriority and setpriority. Maps FN over all the
34 processes specified by WHICH and WHO. PI is non-null if a
35 proc_getprocinfo was already done; FN may use *PI arbitrarily, it is
80b55d32
RM
36 reset on the next call; PI_FLAGS is passed to proc_getprocinfo. Returns
37 FN's result the first time it returns nonzero. If FN never returns
38 nonzero, this returns zero. */
28f540f4
RM
39extern error_t _hurd_priority_which_map (enum __priority_which which, int who,
40 error_t (*fn) (pid_t pid,
80b55d32
RM
41 struct procinfo *pi),
42 int pi_flags);
28f540f4
RM
43
44/* Convert between Mach priority values and the priority
45 values used by getpriority, setpriority, and nice. */
46#define MACH_PRIORITY_TO_NICE(prio) (2 * ((prio) - 12))
47#define NICE_TO_MACH_PRIORITY(nice) (12 + ((nice) / 2))
48
49
50
51
52#endif