Re: [PATCH net-next v5 0/3] Threads support in proc connector

2024-10-18 Thread Anjali Kulkarni
> On Oct 18, 2024, at 2:49 AM, Simon Horman wrote: > > On Thu, Oct 17, 2024 at 11:14:33AM -0700, Anjali Kulkarni wrote: >> Recently we committed a fix to allow processes to receive notifications for >> non-zero exits via the process connector module. Commit is a4c9a56e6a2c. >> >> However, for

Re: [PATCH net-next v5 0/3] Threads support in proc connector

2024-10-18 Thread Simon Horman
On Thu, Oct 17, 2024 at 11:14:33AM -0700, Anjali Kulkarni wrote: > Recently we committed a fix to allow processes to receive notifications for > non-zero exits via the process connector module. Commit is a4c9a56e6a2c. > > However, for threads, when it does a pthread_exit(&exit_status) call, the >

[PATCH net-next v5 0/3] Threads support in proc connector

2024-10-17 Thread Anjali Kulkarni
Recently we committed a fix to allow processes to receive notifications for non-zero exits via the process connector module. Commit is a4c9a56e6a2c. However, for threads, when it does a pthread_exit(&exit_status) call, the kernel is not aware of the exit status with which pthread_exit is called. I