Re: [PATCH 22/23] Add set_mcontext function for ARM AArch64 in bsd-user

2024-06-23 Thread Richard Henderson
On 6/23/24 08:54, Warner Losh wrote: On Tue, Jun 18, 2024 at 4:51 PM Richard Henderson > wrote: On 6/17/24 11:58, Ajeet Singh wrote: > From: Stacey Son > > The function copies register values from the provided target_mcontext_t > s

Re: [PATCH 22/23] Add set_mcontext function for ARM AArch64 in bsd-user

2024-06-23 Thread Warner Losh
On Tue, Jun 18, 2024 at 4:51 PM Richard Henderson < richard.hender...@linaro.org> wrote: > On 6/17/24 11:58, Ajeet Singh wrote: > > From: Stacey Son > > > > The function copies register values from the provided target_mcontext_t > > structure to the CPUARMState registers > > > > Signed-off-by: St

Re: [PATCH 22/23] Add set_mcontext function for ARM AArch64 in bsd-user

2024-06-18 Thread Richard Henderson
On 6/17/24 11:58, Ajeet Singh wrote: From: Stacey Son The function copies register values from the provided target_mcontext_t structure to the CPUARMState registers Signed-off-by: Stacey Son Signed-off-by: Ajeet Singh --- bsd-user/aarch64/signal.c | 22 ++ 1 file chang

[PATCH 22/23] Add set_mcontext function for ARM AArch64 in bsd-user

2024-06-17 Thread Ajeet Singh
From: Stacey Son The function copies register values from the provided target_mcontext_t structure to the CPUARMState registers Signed-off-by: Stacey Son Signed-off-by: Ajeet Singh --- bsd-user/aarch64/signal.c | 22 ++ 1 file changed, 22 insertions(+) diff --git a/bsd-us