diff options
author | Alon Zakai <alonzakai@gmail.com> | 2012-09-21 18:05:36 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2012-09-21 18:05:36 -0700 |
commit | 8d64c579f39715b078d2bed8f2e6497d2fe789d3 (patch) | |
tree | dd2ccb0434e33cc89a11ecabf4e42712ccc2789e | |
parent | 5088b0295c464895bce61e28e46a43b08b94d803 (diff) |
add getrlimit
-rw-r--r-- | system/include/libc/sys/resource.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/system/include/libc/sys/resource.h b/system/include/libc/sys/resource.h index a7fbe4dd..f39dcb33 100644 --- a/system/include/libc/sys/resource.h +++ b/system/include/libc/sys/resource.h @@ -43,6 +43,7 @@ struct rlimit { rlim_t rlim_cur; rlim_t rlim_max; }; +int getrlimit(int resource, struct rlimit *rlim); int setrlimit(int resource, const struct rlimit *rlim); #endif |