[PATCH bpf-next 1/2] bpf: implement bpf_send_signal_pid/tgid() helpers

2024-07-24 Thread Puranjay Mohan
Implement bpf_send_signal_pid and bpf_send_signal_tgid helpers which are similar to bpf_send_signal_thread and bpf_send_signal helpers respectively but can be used to send signals to other threads and processes. Signed-off-by: Puranjay Mohan --- include/uapi/linux/bpf.h | 37 ++

Re: [PATCH bpf-next 1/2] bpf: implement bpf_send_signal_pid/tgid() helpers

2024-07-24 Thread Alexei Starovoitov
On Wed, Jul 24, 2024 at 4:40 AM Puranjay Mohan wrote: > > Implement bpf_send_signal_pid and bpf_send_signal_tgid helpers which are > similar to bpf_send_signal_thread and bpf_send_signal helpers > respectively but can be used to send signals to other threads and > processes. Thanks for working on