1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-24 17:51:17 +03:00
* sysdeps/unix/sysv/linux/setrlimit.c (__setrlimit): Don't modify
	the rlimits structure passed in.

1999-11-19  Andreas Jaeger  <aj@suse.de>

	* include/sys/resource.h (__setrlimit): Add prototype.

1999-11-19  Ulrich Drepper  <drepper@cygnus.com>
This commit is contained in:
Ulrich Drepper
1999-11-20 05:08:30 +00:00
parent 228589d285
commit 602b6b0fe4
3 changed files with 23 additions and 7 deletions

View File

@@ -3,6 +3,9 @@
/* Now define the internal interfaces. */
extern int __getrlimit (enum __rlimit_resource __resource,
struct rlimit *__rlimits) __THROW;
extern int __getrusage (enum __rusage_who __who, struct rusage *__usage) __THROW;
struct rlimit *__rlimits);
extern int __getrusage (enum __rusage_who __who, struct rusage *__usage);
extern int __setrlimit (enum __rlimit_resource __resource,
const struct rlimit *__rlimits);
#endif