NetBSD/src LsBWxfjlib/libpthread pthread.c pthread_cond.c, tests/lib/libpthread t_cancellation.c

   pthread_cancel(3): Rework.

   Make pthread_setcancelstate(3) async-signal-safe.  (As a side effect,
   this also makes pthread_setcanceltype(3) async-signal-safe, although
   that is not required.)

   PR lib/59134: POSIX-1.2024: pthread_setcancelstate must be
   async-signal-safe
VersionDeltaFile
1.186+133-62lib/libpthread/pthread.c
1.78+13-4lib/libpthread/pthread_cond.c
1.113+9-5lib/libpthread/pthread_int.h
1.46+10-3lib/libpthread/pthread_cancelstub.c
1.2+2-5tests/lib/libpthread/t_cancellation.c
+167-795 files

NetBSD/src fTzIhfflib/libpthread pthread_misc.c pthread_mutex.c

   libpthread: Move namespacing include to top of .c files.

   Stuff like libc's namespace.h, or atomic_op_namespace.h, which does
   namespacing tricks like `#define atomic_cas_uint _atomic_cas_uint',
   has to go at the top of each .c file.  If it goes in the middle, it
   might be too late to affect the declarations, and result in compile
   errors.

   I tripped over this by including <sys/atomic.h> in mips
   <machine/lock.h>.

   (Maybe we should create a new pthread_namespace.h file for the
   purpose, but this'll do for now.)
VersionDeltaFile
1.18+5-2lib/libpthread/pthread_misc.c
1.82+5-2lib/libpthread/pthread_mutex.c
1.4+5-2lib/libpthread/pthread_once.c
1.44+5-2lib/libpthread/pthread_rwlock.c
1.27+5-2lib/libpthread/pthread_specific.c
1.9+5-2lib/libpthread/pthread_spin.c
+30-1212 files not shown
+86-3818 files

NetBSD/src C8VhADslib/libpthread pthread_cond.c

   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.
VersionDeltaFile
1.76+63-32lib/libpthread/pthread_cond.c
+63-321 files

NetBSD/src 2sPEHfslib/libpthread pthread_cond.c

   Nix trailing whitespace.
VersionDeltaFile
1.75+3-3lib/libpthread/pthread_cond.c
+3-31 files

NetBSD/src IR2kBkblib/libpthread pthread_mutex.c pthread_cond.c

   - Make pthread_condvar and pthread_mutex work on the stack rather than in
     pthread_t, so there's less chance of bad things happening if someone calls
     (for example) pthread_cond_broadcast() from a signal handler.

   - Remove all the deferred waiter handling except for the one case that really
     matters which is transferring waiters from condvar -> mutex on wakeup, and
     do that by splicing the condvar's waiters onto the mutex.

   - Remove the mutex waiters bit as it's another complication that's not
     strictly needed.
VersionDeltaFile
1.80+96-76lib/libpthread/pthread_mutex.c
1.74+51-69lib/libpthread/pthread_cond.c
1.175+16-71lib/libpthread/pthread.c
1.107+8-13lib/libpthread/pthread_int.h
1.25+3-3lib/libpthread/pthread_types.h
+174-2325 files

NetBSD/src KByj2Z2lib/libpthread pthread_cond.c

   Adjust previous.  In the condvar case the wakeup might already have been
   eaten.
VersionDeltaFile
1.73+7-7lib/libpthread/pthread_cond.c
+7-71 files

NetBSD/src diO6UUNlib/libpthread pthread_cond.c

   Nix trailing whitespace.  NFCI.
VersionDeltaFile
1.72+4-4lib/libpthread/pthread_cond.c
+4-41 files

NetBSD/src yXtDI5dlib/libpthread pthread_cond.c pthread.c

   Deal with a couple of problems with threads being awoken early due to
   timeouts or cancellation where:

   - The restarting thread calls _lwp_exit() before another thread gets around
     to waking it with _lwp_unpark(), leading to ESRCH (observed by joerg@).
     (I may have removed a similar check mistakenly over the weekend.)

   - The restarting thread considers itself gone off the sleep queue but
     at the same time another thread is part way through waking it, and hasn't
     fully completed that operation yet by setting thread->pt_mutexwait = 0.
     I think that could have potentially lead to the list of waiters getting
     messed up given the right circumstances.
VersionDeltaFile
1.71+34-15lib/libpthread/pthread_cond.c
1.173+11-7lib/libpthread/pthread.c
1.79+15-2lib/libpthread/pthread_mutex.c
+60-243 files

NetBSD/src uvyU7SHlib/libpthread pthread_cond.c pthread.c

   In the interests of reliability simplify waiter handling more and redo
   condvars to manage the list of waiters with atomic ops.
VersionDeltaFile
1.70+97-140lib/libpthread/pthread_cond.c
1.171+39-87lib/libpthread/pthread.c
1.41+26-32lib/libpthread/pthread_rwlock.c
1.78+22-32lib/libpthread/pthread_mutex.c
1.24+6-4lib/libpthread/pthread_types.h
1.105+3-3lib/libpthread/pthread_int.h
+193-2986 files

NetBSD/src PFiRot9lib/libpthread pthread_mutex.c pthread.c

   - Try to eliminate a hang in "parked" I've been seeing while stress testing.
     Centralise wakeup of deferred waiters in pthread__clear_waiters() and use
     throughout libpthread.  Make fewer assumptions.  Be more conservative in
     pthread_mutex when dealing with pending waiters.

   - Remove the "hint" argument everywhere since the kernel doesn't use it any
     more.
VersionDeltaFile
1.77+119-202lib/libpthread/pthread_mutex.c
1.170+68-39lib/libpthread/pthread.c
1.69+7-17lib/libpthread/pthread_cond.c
1.104+4-4lib/libpthread/pthread_int.h
1.22+4-4lib/libpthread/pthread_barrier.c
1.40+4-4lib/libpthread/pthread_rwlock.c
+206-2706 files

NetBSD/src 86tA4aEsys/arch/xen/xen xbdback_xenbus.c xbd_xenbus.c, sys/dev/pci pcidevs_data.h

   Sync with HEAD
VersionDeltaFile
1.1333.2.3+9,216-9,090sys/dev/pci/pcidevs_data.h
1.743.2.3+5,260-5,248sys/dev/usb/usbdevs_data.h
1.3.2.1+0-979sys/ufs/ffs/ffs_extattr.c
1.3.2.2+979-0sys/ufs/ffs/ffs_extattr.c
1.67.2.4+291-597sys/arch/xen/xen/xbdback_xenbus.c
1.79.2.4+519-211sys/arch/xen/xen/xbd_xenbus.c
+16,265-16,1255,011 files not shown
+26,666-25,7685,017 files

NetBSD/src yQkttmPlib/libpthread pthread_cond.c pthread.c

   Drop most of the logic associated with pthread__started.

   The pthread_cond logic is a questionable optimisation at best and the
   post-fork logic is plainly broken.
VersionDeltaFile
1.68+2-46lib/libpthread/pthread_cond.c
1.168+4-43lib/libpthread/pthread.c
+6-892 files

NetBSD/src Qli2aW9crypto/external/bsd/heimdal/dist configure configure, external/gpl3/binutils.old/dist md5.sum

   Merge changes from current as of 20200406
VersionDeltaFile
1.5.2.1+65,838-65,100external/gpl3/binutils.old/dist/opcodes/i386-tbl.h
1.1.1.6.2.2+42,709-76,813external/gpl3/binutils/dist/opcodes/i386-tbl.h
1.1.1.7.2.2+23,498-21,141external/gpl3/binutils/dist/md5.sum
1.5.2.1+21,190-18,524external/gpl3/binutils.old/dist/md5.sum
1.1.1.1.4.2+31,685-0crypto/external/bsd/heimdal/dist/configure
1.1.1.1.4.1+0-31,685crypto/external/bsd/heimdal/dist/configure
+184,920-213,26316,893 files not shown
+1,663,020-1,396,48816,899 files

NetBSD/src dmZYMOwlib/libpthread pthread_cond.c

   Use pthread_condattr_t and pthread_cond_t magic fields

   Validate _PT_CONDATTR_MAGIC and _PT_COND_MAGIC respectively.
VersionDeltaFile
1.67+26-8lib/libpthread/pthread_cond.c
+26-81 files

NetBSD/src xsWOnp1lib/libpthread pthread_mutex.c pthread_misc.c

   Pull up following revision(s) (requested by ad in ticket #647):

        lib/libpthread/pthread_rwlock.c: revision 1.37 (patch)
        lib/libpthread/pthread_misc.c: revision 1.16
        lib/libpthread/pthread.c: revision 1.154
        lib/libpthread/pthread_int.h: revision 1.98
        lib/libpthread/pthread_cond.c: revision 1.66
        lib/libpthread/pthread_mutex.c: revision 1.66

   Rip out some very ambitious optimisations around pthread_mutex that are
   don't buy much.  This stuff is hard enough to get right in the kernel let
   alone userspace, and I don't trust that it's right.
VersionDeltaFile
1.65.2.1+24-52lib/libpthread/pthread_mutex.c
1.15.32.1+3-14lib/libpthread/pthread_misc.c
1.153.2.1+2-11lib/libpthread/pthread.c
1.65.6.1+2-5lib/libpthread/pthread_cond.c
1.34.18.1+3-4lib/libpthread/pthread_rwlock.c
1.95.2.2+1-2lib/libpthread/pthread_int.h
+35-886 files

NetBSD/src DsPsgYTlib/libpthread pthread_mutex.c pthread_misc.c

   Rip out some very ambitious optimisations around pthread_mutex that are
   don't buy much.  This stuff is hard enough to get right in the kernel let
   alone userspace, and I don't trust that it's right.
VersionDeltaFile
1.66+24-52lib/libpthread/pthread_mutex.c
1.16+3-14lib/libpthread/pthread_misc.c
1.154+2-11lib/libpthread/pthread.c
1.66+2-5lib/libpthread/pthread_cond.c
1.37+3-4lib/libpthread/pthread_rwlock.c
1.98+1-2lib/libpthread/pthread_int.h
+35-886 files

NetBSD/src ad2RSoqlib/libpthread pthread_cond.c

   unconst the timestamp
VersionDeltaFile
1.65+5-4lib/libpthread/pthread_cond.c
+5-41 files

NetBSD/src k9tYpImlib/libpthread pthread_mutex.c pthread_mutexattr.3, sys/kern sys_sched.c

   GSoC 2016 Charles Cui: Implement thread priority protection based on work
   by Andy Doran. Also document the get/set pshared thread calls as not
   implemented, and add a skeleton implementation that is disabled.
   XXX: document _sched_protect(2).
VersionDeltaFile
1.8+249-3tests/lib/libpthread/t_mutex.c
1.60+184-13lib/libpthread/pthread_mutex.c
1.12+114-57lib/libpthread/pthread_mutexattr.3
1.7+86-2lib/libpthread/pthread_mutex.3
1.44+64-2sys/kern/sys_sched.c
1.10+59-3lib/libpthread/pthread_condattr.3
+756-8017 files not shown
+1,087-12423 files

NetBSD/src jTnpym9external/bsd/ntp/dist CommitLog, external/gpl3/gcc.old/dist MD5SUMS MD5SUMS

   Rebase to HEAD as of a few days ago.
VersionDeltaFile
1.1.1.1.8.2+147,479-0external/gpl3/gcc.old/dist/libgcc/config/libbid/bid_binarydecimal.c
1.1.1.1.8.1+0-147,479external/gpl3/gcc.old/dist/libgcc/config/libbid/bid_binarydecimal.c
1.1.1.2.6.1+89,542-5,537external/bsd/ntp/dist/CommitLog
1.6.6.1+53,184-41,030external/public-domain/sqlite/dist/sqlite3.c
1.1.1.1.8.1+0-66,220external/gpl3/gcc.old/dist/MD5SUMS
1.1.1.1.8.2+66,220-0external/gpl3/gcc.old/dist/MD5SUMS
+356,425-260,266171,173 files not shown
+15,423,012-14,134,330171,179 files

NetBSD/src HJV5p3Blib/libc/gen vis.c, lib/libc/net gethnamaddr.c

   sync with head.

   for a reference, the tree before this commit was tagged
   as yamt-pagecache-tag8.

   this commit was splitted into small chunks to avoid
   a limitation of cvs.  ("Protocol error: too many arguments")
VersionDeltaFile
1.2.2.1+0-2,413lib/libc/time/NEWS
1.2.2.2+2,279-0lib/libc/time/NEWS
1.77.2.3+418-507lib/libc/net/gethnamaddr.c
1.44.4.2+453-346lib/libc/gen/vis.c
1.15.4.5+310-459lib/librumpuser/rumpuser.c
1.2.6.1+740-27lib/librumpuser/rumpuser.3
+4,200-3,7521,367 files not shown
+35,514-27,4471,373 files

NetBSD/src ZNvzo35lib/libpthread pthread_mutex.c pthread_cond.c

   Pull up the following revisions(s) (requested by prlw1 in ticket #1898):
        lib/libpthread/pthread_cond.c:  revision 1.62
        lib/libpthread/pthread_mutex.c: revision 1.57,1.59

   Partial fix for thread deadlock commonly observed with named.
   Also address PR/44756.
VersionDeltaFile
1.51.4.1+56-44lib/libpthread/pthread_mutex.c
1.53.2.1+8-6lib/libpthread/pthread_cond.c
+64-502 files

NetBSD/src xRPffUJlib/libpthread pthread_mutex.c pthread_cond.c

   Pull up the following revisions(s) (requested by prlw1 in ticket #1029):
        lib/libpthread/pthread_cond.c:  revision 1.62
        lib/libpthread/pthread_mutex.c: revision 1.57,1.59

   Partial fix for thread deadlock commonly observed with named.
   Also address PR/44756.
VersionDeltaFile
1.51.22.2+56-44lib/libpthread/pthread_mutex.c
1.56.8.4+8-6lib/libpthread/pthread_cond.c
+64-502 files

NetBSD/src Kduliialib/libpthread pthread_cond.c pthread_compat.c

   remove compatibility code for handling CLOCK_MONOTONIC and handle it in the
   syscall directly.
VersionDeltaFile
1.63+5-24lib/libpthread/pthread_cond.c
1.3+5-4lib/libpthread/pthread_compat.c
1.58+4-4lib/libpthread/pthread_mutex.c
1.144+4-3lib/libpthread/pthread.c
+18-354 files

NetBSD/src RRAOjs8lib/libpthread pthread_cond.c pthread_mutex.c

   PR/44756: Sad Clouds: Prevent leakage of errno = ESRCH from _lwp_park. This
   has two parts:
        - in pthread_cond_timedwait() if the thread we are trying to unpark
          exited, retry the the _lwp_park call without it.
        - pthread_mutex() was affecting errno since it is calling _lwp_park()
          from pthread_mutex_lock_slow(). preserve the original errno.
   Note that the example problem still causes an occassional deadlock on machines
   with many CPUs and it is the same deadlock we observe with named.
VersionDeltaFile
1.62+8-6lib/libpthread/pthread_cond.c
1.57+5-2lib/libpthread/pthread_mutex.c
+13-82 files

NetBSD/src NYFFXRBlib/libc/net getaddrinfo.c, lib/librumpuser rumpuser.c rumpuser.3

   resync from head
VersionDeltaFile
1.19.2.3+328-447lib/librumpuser/rumpuser.c
1.2.12.1+692-27lib/librumpuser/rumpuser.3
1.101.2.1+490-160lib/libc/net/getaddrinfo.c
1.8.2.3+370-247lib/librumpuser/rumpuser_pth.c
1.1.2.1+0-321lib/librumpuser/rumpuser_errtrans.c
1.1.2.2+321-0lib/librumpuser/rumpuser_errtrans.c
+2,201-1,202378 files not shown
+10,171-6,932384 files

NetBSD/src 3db60a6lib/libc/include reentrant.h, lib/libc/thread-stub thread-stub.c

   Pull up following revision(s) (requested by manu in ticket #869):
        lib/libpthread/pthread_rwlock.c: revision 1.33
        lib/libc/include/reentrant.h: revision 1.16
        lib/libpthread/pthread_cond.c: revision 1.59
        lib/libpthread/pthread_misc.c: revision 1.15
        lib/libc/thread-stub/thread-stub.c: revision 1.23
        lib/libpthread/pthread_cancelstub.c: revision 1.38
        lib/libpthread/pthread_specific.c: revision 1.26
        lib/libpthread/pthread_mutex.c: revision 1.56
        lib/libpthread/pthread_tsd.c: revision 1.11
        lib/libpthread/Makefile: revision 1.80
        lib/libpthread/pthread.c: revision 1.143
        lib/libpthread/pthread_int.h: revision 1.89
   - Allow libpthread to be dlopened again, by providing libc stubs to
   libpthread.
   - Fail if the dlopened libpthread does pthread_create(). From manu@
   - Discussed at length in the mailing lists; approved by core@
   - This was chosen as the least intrusive patch that will provide
     the necessary functionality.
   XXX: pullup to 6
VersionDeltaFile
1.22.4.1+28-34lib/libc/thread-stub/thread-stub.c
1.14.10.2+51-1lib/libc/include/reentrant.h
1.125.4.3+31-2lib/libpthread/pthread.c
1.51.22.1+27-3lib/libpthread/pthread_mutex.c
1.32.22.1+21-4lib/libpthread/pthread_rwlock.c
1.56.8.3+14-2lib/libpthread/pthread_cond.c
+172-466 files not shown
+211-6312 files

NetBSD/src d476563lib/libpthread pthread_cond.c

   Pull up following revision(s) (requested by christos in ticket #862):
        lib/libpthread/pthread_cond.c: revision 1.60
        lib/libpthread/pthread_cond.c: revision 1.61
   PR/47703: Yasushi Oshima: pthread_cond_timedwait() does not wait
   after call pthread_condattr_setclock(CLOCK_MONOTONIC)
   _lwp_park(2) expects a realtime clock, and it gets passed a monotonic
   one.  Since monotonic < real, it never sleeps. This patch adjusts
   the monotonic clock to be a real one before it passes is to
   _lwp_park(2). This is the minimal hacky fix and it will be fixed
   properly in _lwp_park(2) in the future.
   XXX: pullup to 6.
   for safety, declare mono on the outermost block it is used.
VersionDeltaFile
1.56.8.2+24-4lib/libpthread/pthread_cond.c
+24-41 files

NetBSD/src 5fc322alib/libpthread pthread_cond.c

   for safety, declare mono on the outermost block it is used.
VersionDeltaFile
1.61+4-3lib/libpthread/pthread_cond.c
+4-31 files

NetBSD/src 6c84d80lib/libpthread pthread_cond.c

   PR/47703: Yasushi Oshima: pthread_cond_timedwait() does not wait
   after call pthread_condattr_setclock(CLOCK_MONOTONIC)

   _lwp_park(2) expects a realtime clock, and it gets passed a monotonic
   one.  Since monotonic < real, it never sleeps. This patch adjusts
   the monotonic clock to be a real one before it passes is to
   _lwp_park(2). This is the minimal hacky fix and it will be fixed
   properly in _lwp_park(2) in the future.

   XXX: pullup to 6.
VersionDeltaFile
1.60+23-4lib/libpthread/pthread_cond.c
+23-41 files

NetBSD/src 55f5918lib/libc/include reentrant.h, lib/libc/thread-stub thread-stub.c

by christos on ⎇🏷
   - Allow libpthread to be dlopened again, by providing libc stubs to libpthread.
   - Fail if the dlopened libpthread does pthread_create(). From manu@
   - Discussed at length in the mailing lists; approved by core@
   - This was chosen as the least intrusive patch that will provide
     the necessary functionality.
   XXX: pullup to 6
VersionDeltaFile
1.23+28-34lib/libc/thread-stub/thread-stub.c
1.16+51-1lib/libc/include/reentrant.h
1.143+31-2lib/libpthread/pthread.c
1.56+25-3lib/libpthread/pthread_mutex.c
1.26+18-7lib/libpthread/pthread_specific.c
1.33+21-4lib/libpthread/pthread_rwlock.c
+174-517 files not shown
+227-7113 files