summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/ulimit.c
diff options
context:
space:
mode:
authorCarmelo Amoroso <carmelo.amoroso@st.com>2011-11-01 15:08:17 +0100
committerCarmelo Amoroso <carmelo.amoroso@st.com>2011-11-23 17:24:54 +0100
commit1b6c5c4f32f13cc8f26d38a6159a958a7a9d29b2 (patch)
treee6ff84b56fe2837cf44fe625dd09431e2148c5ab /libc/sysdeps/linux/common/ulimit.c
parent9b42da7d0558884e2a3cc9a8674ccfc752369610 (diff)
libc: do not rely upon ulimit kernel syscall.
On several architectures __NR_ulimit syscall number is currently defined but it is remapped onto sys_ni_syscall, while on other architectures they are not longer defined. So use {get,set}rlimit only to implement ulimit interface. It fixes LTP ulimit01 test case. Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com> Acked-by: Bernhard Reutner-Fischer <rep.dot.nop@gmail.com>
Diffstat (limited to 'libc/sysdeps/linux/common/ulimit.c')
-rw-r--r--libc/sysdeps/linux/common/ulimit.c8
1 files changed, 0 insertions, 8 deletions
diff --git a/libc/sysdeps/linux/common/ulimit.c b/libc/sysdeps/linux/common/ulimit.c
index 74b453375..8be4a37aa 100644
--- a/libc/sysdeps/linux/common/ulimit.c
+++ b/libc/sysdeps/linux/common/ulimit.c
@@ -7,13 +7,6 @@
#include <sys/syscall.h>
-#ifdef __NR_ulimit
-
-extern long int ulimit(int cmd, long arg);
-_syscall2(long, ulimit, int, cmd, long, arg)
-
-#else
-
#include <stdarg.h>
#include <unistd.h>
#include <ulimit.h>
@@ -53,4 +46,3 @@ long int ulimit(int cmd, ...)
va_end (va);
return result;
}
-#endif