diff options
author | Elliott Hughes <enh@google.com> | 2015-10-28 17:14:48 -0700 |
---|---|---|
committer | Steve Kondik <steve@cyngn.com> | 2016-03-09 02:01:46 -0800 |
commit | 4954aab7dfaab4709cdf973c71c4e39419489729 (patch) | |
tree | 1d4cb33175890320792a89179ec0a482d17343fe /libc/include | |
parent | 02b1d48d51ffed14442390c80e773f3ac89396ff (diff) | |
download | bionic-4954aab7dfaab4709cdf973c71c4e39419489729.zip bionic-4954aab7dfaab4709cdf973c71c4e39419489729.tar.gz bionic-4954aab7dfaab4709cdf973c71c4e39419489729.tar.bz2 |
Add prlimit to LP32.
Bug: http://b/24918750
Change-Id: I0151cd66ccf79a6169610de35bb9c288c0fa4917
Diffstat (limited to 'libc/include')
-rw-r--r-- | libc/include/sys/resource.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libc/include/sys/resource.h b/libc/include/sys/resource.h index 3f8dd45..8209dfb 100644 --- a/libc/include/sys/resource.h +++ b/libc/include/sys/resource.h @@ -53,10 +53,7 @@ extern int setpriority(int, int, int); extern int getrusage(int, struct rusage*); -#if __LP64__ -/* Implementing prlimit for 32-bit isn't worth the effort. */ extern int prlimit(pid_t, int, const struct rlimit*, struct rlimit*); -#endif extern int prlimit64(pid_t, int, const struct rlimit64*, struct rlimit64*); __END_DECLS |