diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2011-06-27 17:44:52 +0100 |
---|---|---|
committer | Riku Voipio <riku.voipio@linaro.org> | 2011-07-11 16:34:49 +0300 |
commit | 163a05a8398bc4b56c7498fa9901422a159168bf (patch) | |
tree | b79680daf3497a6ea523e2dd16331568015f90d6 /linux-user/syscall_defs.h | |
parent | d979e8eb544da31df78bc76358a73f0d1c823c17 (diff) |
linux-user: Implement prlimit64 syscall
Implement the prlimit64 syscall.
Slightly modified to apply upstream -Riku
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Diffstat (limited to 'linux-user/syscall_defs.h')
-rw-r--r-- | linux-user/syscall_defs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h index 1b734515bf..1fdc84d3e7 100644 --- a/linux-user/syscall_defs.h +++ b/linux-user/syscall_defs.h @@ -2293,3 +2293,7 @@ struct target_epoll_event { target_epoll_data_t data; }; #endif +struct target_rlimit64 { + uint64_t rlim_cur; + uint64_t rlim_max; +}; |