qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 2/3] linux-user: Fix TARGET_SA_* defines for HPP


From: Laurent Vivier
Subject: Re: [Qemu-devel] [PATCH 2/3] linux-user: Fix TARGET_SA_* defines for HPPA
Date: Sat, 11 Mar 2017 15:14:45 +0100
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.7.0

Le 11/03/2017 à 04:42, Richard Henderson a écrit :
> From: Helge Deller <address@hidden>
> 
> Reported-by: Helge Deller <address@hidden>
> Signed-off-by: Richard Henderson <address@hidden>

Reviewed-by: Laurent Vivier <address@hidden>

> ---
>  linux-user/syscall_defs.h | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h
> index 8b1ad74..2620b56 100644
> --- a/linux-user/syscall_defs.h
> +++ b/linux-user/syscall_defs.h
> @@ -473,6 +473,14 @@ int do_sigaction(int sig, const struct target_sigaction 
> *act,
>  #define TARGET_SA_RESETHAND  0x00000010
>  #define TARGET_SA_NOCLDWAIT  0x00000020 /* not supported yet */
>  #define TARGET_SA_SIGINFO    0x00000040
> +#elif defined(TARGET_HPPA)
> +#define TARGET_SA_ONSTACK       0x00000001
> +#define TARGET_SA_RESETHAND     0x00000004
> +#define TARGET_SA_NOCLDSTOP     0x00000008
> +#define TARGET_SA_SIGINFO       0x00000010
> +#define TARGET_SA_NODEFER       0x00000020
> +#define TARGET_SA_RESTART       0x00000040
> +#define TARGET_SA_NOCLDWAIT     0x00000080
>  #else
>  #define TARGET_SA_NOCLDSTOP  0x00000001
>  #define TARGET_SA_NOCLDWAIT  0x00000002 /* not supported yet */
> 




reply via email to

[Prev in Thread] Current Thread [Next in Thread]