]> Git Repo - qemu.git/commit - linux-user/syscall.c
linux-user/syscall.c: fix build without RLIMIT_RTTIME
authorFabrice Fontaine <[email protected]>
Mon, 23 May 2022 10:52:39 +0000 (12:52 +0200)
committerLaurent Vivier <[email protected]>
Mon, 23 May 2022 20:41:59 +0000 (22:41 +0200)
commitc3a28d71221d30b1f58bf5efc88add20635ce46d
tree32b11329a8dfc7fd46fcc4bb10c5e017c48d1c68
parent60f1c8017a2b137013a8ae83911d74700f692425
linux-user/syscall.c: fix build without RLIMIT_RTTIME

RLIMIT_RTTIME is not provided by uclibc-ng or by musl prior to version
1.2.0 and
https://github.com/bminor/musl/commit/2507e7f5312e79620f6337935d0a6c9045ccba09
resulting in the following build failure since
https://git.qemu.org/?p=qemu.git;a=commit;h=244fd08323088db73590ff2317dfe86f810b51d7:

../linux-user/syscall.c: In function 'target_to_host_resource':
../linux-user/syscall.c:1057:16: error: 'RLIMIT_RTTIME' undeclared (first use in this function); did you mean 'RLIMIT_NOFILE'?
 1057 |         return RLIMIT_RTTIME;
      |                ^~~~~~~~~~~~~
      |                RLIMIT_NOFILE

Fixes:
 - http://autobuild.buildroot.org/results/22d3b584b704613d030e1ea9e6b709b713e4cc26

Signed-off-by: Fabrice Fontaine <[email protected]>
Reviewed-by: Laurent Vivier <[email protected]>
Message-Id: <20220523105239.1499162[email protected]>
Signed-off-by: Laurent Vivier <[email protected]>
linux-user/syscall.c
This page took 0.025451 seconds and 4 git commands to generate.