-1

Is there a C example about using PTRACE_GETSIGMASK and PTRACE_SETSIGMASK?

I have not found any C example about using PTRACE_GETSIGMASK/PTRACE_SETSIGMASK, I wrote a simple code to test them, but it returns and EINVAL error. I am trying to modify the trace signal mask

Siong Thye Goh
  • 3,518
  • 10
  • 23
  • 31

1 Answers1

-1

kernel sizeof(sigset_t)=8, userspace sizeof(sigset_t)=128. try addr=8

applei
  • 1