diff options
author | Serge Belyshev <belyshev@depni.sinp.msu.ru> | 2022-01-29 22:48:23 +0300 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2022-02-01 08:01:44 +0100 |
commit | 244fd08323088db73590ff2317dfe86f810b51d7 (patch) | |
tree | 7e4f950503e58c4243f8d15ab7664d60240c9555 /linux-user/syscall.c | |
parent | b13e49bc86961c6725b2ebddd53898fe1366f6dc (diff) | |
download | qemu-244fd08323088db73590ff2317dfe86f810b51d7.zip qemu-244fd08323088db73590ff2317dfe86f810b51d7.tar.gz qemu-244fd08323088db73590ff2317dfe86f810b51d7.tar.bz2 |
linux-user/syscall: Translate TARGET_RLIMIT_RTTIME
Signed-off-by: Serge Belyshev <belyshev@depni.sinp.msu.ru>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <87a6fel3w8.fsf_-_@depni.sinp.msu.ru>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/syscall.c')
-rw-r--r-- | linux-user/syscall.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c index b3948d1..b9b18a7 100644 --- a/linux-user/syscall.c +++ b/linux-user/syscall.c @@ -1053,6 +1053,8 @@ static inline int target_to_host_resource(int code) return RLIMIT_RSS; case TARGET_RLIMIT_RTPRIO: return RLIMIT_RTPRIO; + case TARGET_RLIMIT_RTTIME: + return RLIMIT_RTTIME; case TARGET_RLIMIT_SIGPENDING: return RLIMIT_SIGPENDING; case TARGET_RLIMIT_STACK: |