diff options
author | David Xu <davidxu@FreeBSD.org> | 2007-01-05 03:57:11 +0000 |
---|---|---|
committer | David Xu <davidxu@FreeBSD.org> | 2007-01-05 03:57:11 +0000 |
commit | 03779e5c2b02bb0a5c654525a432cdd2bb7b508d (patch) | |
tree | ee67e6c3588c5a731cb83522ef55f812defd9ea8 /lib | |
parent | da20a63dbbf594030d5a1b8c77530ff0472194f4 (diff) |
Notes
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libthr/thread/thr_mutex.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libthr/thread/thr_mutex.c b/lib/libthr/thread/thr_mutex.c index ea40a9b89f65c..304fc80b55572 100644 --- a/lib/libthr/thread/thr_mutex.c +++ b/lib/libthr/thread/thr_mutex.c @@ -710,7 +710,7 @@ _pthread_mutex_setprioceiling(pthread_mutex_t *mutex, return (0); } } - TAILQ_INSERT_HEAD(&curthread->pp_mutexq, m, m_qe); + TAILQ_INSERT_TAIL(&curthread->pp_mutexq, m, m_qe); } } return (0); |