1 /* Copyright (C) 1991, 1995-1999, 2000, 2004 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, write to the Free
16 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 /* This is a compatibility file. If we don't build the libc with
20 versioning don't compile this file. */
21 #include <shlib-compat.h>
22 #if SHLIB_COMPAT (libc, GLIBC_2_1, GLIBC_2_2)
25 #include <sys/resource.h>
26 #include <sys/types.h>
28 extern int __new_getrlimit (enum __rlimit_resource
, struct rlimit
*);
29 extern int __old_getrlimit64 (enum __rlimit_resource resource
,
30 struct rlimit64
*rlimits
);
33 /* Put the soft and hard limits for RESOURCE in *RLIMITS.
34 Returns 0 if successful, -1 if not (and sets errno). */
36 attribute_compat_text_section
37 __old_getrlimit64 (enum __rlimit_resource resource
, struct rlimit64
*rlimits
)
39 struct rlimit rlimits32
;
41 if (__new_getrlimit (resource
, &rlimits32
) < 0)
44 if (rlimits32
.rlim_cur
== RLIM_INFINITY
)
45 rlimits
->rlim_cur
= RLIM64_INFINITY
>> 1;
47 rlimits
->rlim_cur
= rlimits32
.rlim_cur
;
48 if (rlimits32
.rlim_max
== RLIM_INFINITY
)
49 rlimits
->rlim_max
= RLIM64_INFINITY
>> 1;
51 rlimits
->rlim_max
= rlimits32
.rlim_max
;
56 compat_symbol (libc
, __old_getrlimit64
, getrlimit64
, GLIBC_2_1
);
58 #endif /* SHLIB_COMPAT */