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

2024-06-18 Thread Richard Henderson
On 6/17/24 11:58, Ajeet Singh wrote: From: Warner Losh The function utilizes the `get_mcontext` function to retrieve the machine context for the current CPUARMState Signed-off-by: Warner Losh Signed-off-by: Ajeet Singh --- bsd-user/aarch64/signal.c | 14 ++ 1 file changed, 14 ins

[PATCH 21/23] Add setup_sigframe_arch function for ARM AArch64 in bsd-user

2024-06-17 Thread Ajeet Singh
From: Warner Losh The function utilizes the `get_mcontext` function to retrieve the machine context for the current CPUARMState Signed-off-by: Warner Losh Signed-off-by: Ajeet Singh --- bsd-user/aarch64/signal.c | 14 ++ 1 file changed, 14 insertions(+) diff --git a/bsd-user/aarc