Re: [PATCH] linux-user: Trace rt_sigprocmask's sigsets

2024-10-22 Thread Ilya Leoshkevich
On Mon, 2024-10-21 at 18:50 -0700, Richard Henderson wrote: > On 10/17/24 02:14, Ilya Leoshkevich wrote: > > @@ -3312,10 +3358,26 @@ print_rt_sigprocmask(CPUArchState *cpu_env, > > const struct syscallname *name, > >   case TARGET_SIG_SETMASK: how = "SIG_SETMASK"; break; > >   } > >   q

Re: [PATCH] linux-user: Trace rt_sigprocmask's sigsets

2024-10-21 Thread Richard Henderson
On 10/17/24 02:14, Ilya Leoshkevich wrote: @@ -3312,10 +3358,26 @@ print_rt_sigprocmask(CPUArchState *cpu_env, const struct syscallname *name, case TARGET_SIG_SETMASK: how = "SIG_SETMASK"; break; } qemu_log("%s,", how); -print_pointer(arg1, 0); -print_pointer(arg2, 0);