Re: [PATCH v4 07/36] bsd-user/i386: Move the inlines into signal.c

2021-11-05 Thread Warner Losh
On Fri, Nov 5, 2021 at 10:45 AM Warner Losh wrote: > > > On Fri, Nov 5, 2021 at 10:21 AM Richard Henderson < > richard.hender...@linaro.org> wrote: > >> On 11/4/21 11:18 PM, Warner Losh wrote: >> > +abi_long set_sigtramp_args(CPUX86State *env, int sig, >> > + struct targ

Re: [PATCH v4 07/36] bsd-user/i386: Move the inlines into signal.c

2021-11-05 Thread Warner Losh
On Fri, Nov 5, 2021 at 10:21 AM Richard Henderson < richard.hender...@linaro.org> wrote: > On 11/4/21 11:18 PM, Warner Losh wrote: > > +abi_long set_sigtramp_args(CPUX86State *env, int sig, > > + struct target_sigframe *frame, > > + abi_ulong fra

Re: [PATCH v4 07/36] bsd-user/i386: Move the inlines into signal.c

2021-11-05 Thread Richard Henderson
On 11/4/21 11:18 PM, Warner Losh wrote: +abi_long set_sigtramp_args(CPUX86State *env, int sig, + struct target_sigframe *frame, + abi_ulong frame_addr, + struct target_sigaction *ka); +abi_long get_mcontext(CPUX86State

[PATCH v4 07/36] bsd-user/i386: Move the inlines into signal.c

2021-11-04 Thread Warner Losh
Move the (now stubbed out) inlines into bsd-user/i386/signal.c. Signed-off-by: Warner Losh --- bsd-user/i386/signal.c | 56 +- bsd-user/i386/target_arch_signal.h | 43 +-- 2 files changed, 63 insertions(+), 36 deletions(-) diff --git a