NetBSD/lib/libpthread
ad 7a60fa0a18 Another bug. The CAS loop in pthread_cond_signal() could race against the
thread it is trying to awake.  The thread could exit the condvar and then
reinsert itself at the head of the list with a new waiter behind it.  It's
likely possible to fix this in a way that's wait-free but for now just fix
the bug.
2020-06-14 21:33:28 +00:00
..
2020-04-11 09:15:23 +00:00
2019-04-27 10:57:11 +00:00
2019-04-27 10:57:11 +00:00
2019-04-27 10:57:11 +00:00
2019-12-27 09:45:26 +00:00
2020-06-11 18:41:22 +00:00
2019-04-27 10:57:11 +00:00
2019-04-27 10:57:11 +00:00
2019-04-27 10:57:11 +00:00

$NetBSD: README,v 1.7 2017/02/08 03:44:41 kamil Exp $

Due to limitations in the current pthread implementation, makecontext(3)
and sigaltstack(2) should not be used in programs which link against
libpthread (whether threads are used or not). This has been noted in the
makecontext(3), sigaltstack(2), and pthread(3) man pages.