summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authordes <des@FreeBSD.org>2008-02-04 12:35:23 +0000
committerdes <des@FreeBSD.org>2008-02-04 12:35:23 +0000
commitc0895348917c86668b5cc15d7e8d98f97043de7e (patch)
treebcaf2a924f9ede8fd58d1456cc860a7f9ad93303 /tools
parentf23198af5c5d671548e3ad76cf9a569dbc55bd0d (diff)
downloadFreeBSD-src-c0895348917c86668b5cc15d7e8d98f97043de7e.zip
FreeBSD-src-c0895348917c86668b5cc15d7e8d98f97043de7e.tar.gz
After careful consideration (and a brief discussion with attilio@), change
the semantics of pthread_mutex_islocked_np() to return true if and only if the mutex is held by the current thread. Obviously, change the regression test to match. MFC after: 2 weeks
Diffstat (limited to 'tools')
-rw-r--r--tools/regression/pthread/mutex_islocked_np/mutex_islocked_np.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/regression/pthread/mutex_islocked_np/mutex_islocked_np.c b/tools/regression/pthread/mutex_islocked_np/mutex_islocked_np.c
index 3e467a1..5ab7e33 100644
--- a/tools/regression/pthread/mutex_islocked_np/mutex_islocked_np.c
+++ b/tools/regression/pthread/mutex_islocked_np/mutex_islocked_np.c
@@ -37,8 +37,8 @@ thread(void *arg)
{
pthread_mutex_t *mtx = arg;
- if (pthread_mutex_islocked_np(mtx) == 0) {
- printf("pthread_mutex_islocked_np() returned zero\n"
+ if (pthread_mutex_islocked_np(mtx) != 0) {
+ printf("pthread_mutex_islocked_np() returned non-zero\n"
"for a mutex held by another thread\n");
exit(1);
}
OpenPOWER on IntegriCloud