summaryrefslogtreecommitdiffstats
path: root/linux-user
diff options
context:
space:
mode:
authorStefan Markovic2018-10-12 12:40:57 +0200
committerAleksandar Markovic2018-10-18 20:37:20 +0200
commita2b9a10e94f5fc08f793b495bbb2b9416fafac83 (patch)
tree21f9b033d67aa8d549c6879acd4b39782bcf4a13 /linux-user
parentelf: Fix comments to EF_MIPS_MACH_xxx constants (diff)
downloadqemu-a2b9a10e94f5fc08f793b495bbb2b9416fafac83.tar.gz
qemu-a2b9a10e94f5fc08f793b495bbb2b9416fafac83.tar.xz
qemu-a2b9a10e94f5fc08f793b495bbb2b9416fafac83.zip
linux-user: Add MIPS-specific prctl() options
Add MIPS-specific prctl() options TARGET_PR_SET_FP_MODE and TARGET_PR_SET_FP_MODE. These values are essentially copied from linux kernel header include/uapi/linux/prctl.h. This is done in a way consistent with a similar case of aarch64-specific prctl() options TARGET_PR_SVE_SET_VL and TARGET_PR_SVE_GET_VL. Reviewed-by: Aleksandar Markovic <amarkovic@wavecomp.com> Signed-off-by: Stefan Markovic <smarkovic@wavecomp.com> Signed-off-by: Aleksandar Markovic <amarkovic@wavecomp.com>
Diffstat (limited to 'linux-user')
-rw-r--r--linux-user/mips/target_syscall.h4
-rw-r--r--linux-user/mips64/target_syscall.h4
2 files changed, 8 insertions, 0 deletions
diff --git a/linux-user/mips/target_syscall.h b/linux-user/mips/target_syscall.h
index 2fca1c6bf9..33177af113 100644
--- a/linux-user/mips/target_syscall.h
+++ b/linux-user/mips/target_syscall.h
@@ -244,4 +244,8 @@ static inline abi_ulong target_shmlba(CPUMIPSState *env)
return 0x40000;
}
+/* MIPS-specific prctl() options */
+#define TARGET_PR_SET_FP_MODE 45
+#define TARGET_PR_GET_FP_MODE 46
+
#endif /* MIPS_TARGET_SYSCALL_H */
diff --git a/linux-user/mips64/target_syscall.h b/linux-user/mips64/target_syscall.h
index 078437d765..c1160e69f8 100644
--- a/linux-user/mips64/target_syscall.h
+++ b/linux-user/mips64/target_syscall.h
@@ -241,4 +241,8 @@ static inline abi_ulong target_shmlba(CPUMIPSState *env)
return 0x40000;
}
+/* MIPS-specific prctl() options */
+#define TARGET_PR_SET_FP_MODE 45
+#define TARGET_PR_GET_FP_MODE 46
+
#endif /* MIPS64_TARGET_SYSCALL_H */