Welcome to mirror list, hosted at ThFree Co, Russian Federation.

resource.c « linux « sys « libc « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4a80bbfcea21ff3a295553e4ceb217cef9852a68 (plain)
1
2
3
4
5
6
7
8
9
10
/* libc/sys/linux/resource.c - Process resource functions */

/* Copyright 2002, Red Hat Inc. */

#include <sys/resource.h>
#include <machine/syscall.h>

_syscall2(int,getrusage,int,who,struct rusage *,r_usage)
_syscall2(int,getrlimit,int,resource,struct rlimit *,rlp)
_syscall2(int,setrlimit,int,resource,const struct rlimit *,rlp)