mirror of
https://sourceware.org/git/glibc.git
synced 2025-05-28 16:21:30 +03:00
hurd: Fix pthread_kill on exiting/ted thread
We have to drop the kernel_thread port from the thread structure, to avoid pthread_kill's call to _hurd_thread_sigstate trying to reference it and fail.
This commit is contained in:
parent
dfb204d87f
commit
2c040d0b90
@ -35,6 +35,10 @@ __pthread_kill (pthread_t thread, int sig)
|
|||||||
if (pthread == NULL)
|
if (pthread == NULL)
|
||||||
return ESRCH;
|
return ESRCH;
|
||||||
|
|
||||||
|
if (pthread->kernel_thread == MACH_PORT_DEAD)
|
||||||
|
/* The pthread ID is still valid but we cannot send a signal any more. */
|
||||||
|
return 0;
|
||||||
|
|
||||||
ss = _hurd_thread_sigstate (pthread->kernel_thread);
|
ss = _hurd_thread_sigstate (pthread->kernel_thread);
|
||||||
assert (ss);
|
assert (ss);
|
||||||
|
|
||||||
|
@ -68,6 +68,9 @@ __pthread_thread_terminate (struct __pthread *thread)
|
|||||||
/* The wake up port is now no longer needed. */
|
/* The wake up port is now no longer needed. */
|
||||||
__mach_port_destroy (__mach_task_self (), wakeup_port);
|
__mach_port_destroy (__mach_task_self (), wakeup_port);
|
||||||
|
|
||||||
|
/* The kernel thread won't be there any more. */
|
||||||
|
thread->kernel_thread = MACH_PORT_DEAD;
|
||||||
|
|
||||||
/* Terminate and release all that's left. */
|
/* Terminate and release all that's left. */
|
||||||
err = __thread_terminate_release (kernel_thread, mach_task_self (),
|
err = __thread_terminate_release (kernel_thread, mach_task_self (),
|
||||||
kernel_thread, reply_port,
|
kernel_thread, reply_port,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user