about summary refs log tree commit diff
path: root/sysdeps/pthread/tst-pthread-raise-blocked-self.c
Commit message (Collapse)AuthorAgeFilesLines
* nptl: pthread_kill must send signals to a specific thread [BZ #28407]Florian Weimer2021-10-011-0/+92
The choice between the kill vs tgkill system calls is not just about the TID reuse race, but also about whether the signal is sent to the whole process (and any thread in it) or to a specific thread. This was caught by the openposix test suite: LTP: openposix test suite - FAIL: SIGUSR1 is member of new thread pendingset. <https://gitlab.com/cki-project/kernel-tests/-/issues/764> Fixes commit 526c3cf11ee9367344b6b15d669e4c3cb461a2be ("nptl: Fix race between pthread_kill and thread exit (bug 12889)"). Reviewed-by: Carlos O'Donell <carlos@redhat.com> Tested-by: Carlos O'Donell <carlos@redhat.com>