aboutsummaryrefslogtreecommitdiff
path: root/linux-user/mips
diff options
context:
space:
mode:
authorSerge Belyshev <belyshev@depni.sinp.msu.ru>2022-01-29 22:46:59 +0300
committerLaurent Vivier <laurent@vivier.eu>2022-02-01 08:01:38 +0100
commitb13e49bc86961c6725b2ebddd53898fe1366f6dc (patch)
tree975a94b48ac76b17a060e43e081a3ff7f5961cb3 /linux-user/mips
parenteb33cdaeda55d951f915152ad23816d47aca9955 (diff)
downloadqemu-b13e49bc86961c6725b2ebddd53898fe1366f6dc.zip
qemu-b13e49bc86961c6725b2ebddd53898fe1366f6dc.tar.gz
qemu-b13e49bc86961c6725b2ebddd53898fe1366f6dc.tar.bz2
linux-user: Move generic TARGET_RLIMIT* definitions to generic/target_resource.h
Signed-off-by: Serge Belyshev <belyshev@depni.sinp.msu.ru> Message-Id: <87ee4ql3yk.fsf_-_@depni.sinp.msu.ru> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Diffstat (limited to 'linux-user/mips')
-rw-r--r--linux-user/mips/target_resource.h24
1 files changed, 24 insertions, 0 deletions
diff --git a/linux-user/mips/target_resource.h b/linux-user/mips/target_resource.h
new file mode 100644
index 0000000..6d131b0
--- /dev/null
+++ b/linux-user/mips/target_resource.h
@@ -0,0 +1,24 @@
+#ifndef MIPS_TARGET_RESOURCE_H
+#define MIPS_TARGET_RESOURCE_H
+
+#include "../generic/target_resource.h"
+
+#undef TARGET_RLIM_INFINITY
+#define TARGET_RLIM_INFINITY 0x7fffffffUL
+
+#undef TARGET_RLIMIT_NOFILE
+#define TARGET_RLIMIT_NOFILE 5
+
+#undef TARGET_RLIMIT_AS
+#define TARGET_RLIMIT_AS 6
+
+#undef TARGET_RLIMIT_RSS
+#define TARGET_RLIMIT_RSS 7
+
+#undef TARGET_RLIMIT_NPROC
+#define TARGET_RLIMIT_NPROC 8
+
+#undef TARGET_RLIMIT_MEMLOCK
+#define TARGET_RLIMIT_MEMLOCK 9
+
+#endif