Re: [Qemu-devel] [PATCH 6/6] Add prctl() PR_SET_FP_MODE and PR_GET_FP_MODE implementations

2018-10-26 Thread Aleksandar Markovic
> From: Stefan Markovic > Subject: [PATCH 6/6] Add prctl() PR_SET_FP_MODE and PR_GET_FP_MODE > implementations > > From: Stefan Markovic > > Signed-off-by: Stefan Markovic > #define TARGET_PR_SET_FP_MODE 45 > #define TARGET_PR_GET_FP_MODE 46 > +#define TARGET_PR_FP_MODE_FR (1 << 0) >

[Qemu-devel] [PATCH 6/6] Add prctl() PR_SET_FP_MODE and PR_GET_FP_MODE implementations

2018-10-26 Thread Stefan Markovic
From: Stefan Markovic Signed-off-by: Stefan Markovic --- linux-user/mips/target_syscall.h | 2 ++ linux-user/mips64/target_syscall.h | 2 ++ linux-user/syscall.c | 62 +++--- 3 files changed, 62 insertions(+), 4 deletions(-) diff --git