summaryrefslogtreecommitdiffstats
path: root/vendor/modernc.org/libc/libc_linux_386.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/modernc.org/libc/libc_linux_386.go')
-rw-r--r--vendor/modernc.org/libc/libc_linux_386.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/modernc.org/libc/libc_linux_386.go b/vendor/modernc.org/libc/libc_linux_386.go
index a8e5c526..c1369dd5 100644
--- a/vendor/modernc.org/libc/libc_linux_386.go
+++ b/vendor/modernc.org/libc/libc_linux_386.go
@@ -455,3 +455,13 @@ func Xfopen64(t *TLS, pathname, mode uintptr) uintptr {
t.setErrno(errno.ENOMEM)
return 0
}
+
+// int setrlimit(int resource, const struct rlimit *rlim);
+func Xsetrlimit64(t *TLS, resource int32, rlim uintptr) int32 {
+ if _, _, err := unix.Syscall(unix.SYS_SETRLIMIT, uintptr(resource), uintptr(rlim), 0); err != 0 {
+ t.setErrno(err)
+ return -1
+ }
+
+ return 0
+}