qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: qemu-devel@nongnu.org
Cc: Blue Swirl <blauwirbel@gmail.com>
Subject: [Qemu-devel] [PATCH 6/7] add assertions on the owner of a QemuMutex
Date: Thu, 10 Feb 2011 18:37:43 +0100	[thread overview]
Message-ID: <1297359464-9789-7-git-send-email-pbonzini@redhat.com> (raw)
In-Reply-To: <1297359464-9789-1-git-send-email-pbonzini@redhat.com>

These are already present in the Win32 implementation, add them to
the pthread wrappers as well.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Cc: Stefan Weil <weil@mail.berlios.de>
Cc: Blue Swirl <blauwirbel@gmail.com>
---
 qemu-thread-posix.c |   20 +++++++++++++++++++-
 qemu-thread-posix.h |    1 +
 2 files changed, 20 insertions(+), 1 deletions(-)

diff --git a/qemu-thread-posix.c b/qemu-thread-posix.c
index fbc78fe..e6cafd9 100644
--- a/qemu-thread-posix.c
+++ b/qemu-thread-posix.c
@@ -16,9 +16,12 @@
 #include <time.h>
 #include <signal.h>
 #include <stdint.h>
+#include <assert.h>
 #include <string.h>
 #include "qemu-thread.h"
 
+static pthread_t pthread_null;
+
 static void error_exit(int err, const char *msg)
 {
     fprintf(stderr, "qemu: %s: %s\n", msg, strerror(err));
@@ -29,6 +32,7 @@ void qemu_mutex_init(QemuMutex *mutex)
 {
     int err;
 
+    mutex->owner = pthread_null;
     err = pthread_mutex_init(&mutex->lock, NULL);
     if (err)
         error_exit(err, __func__);
@@ -48,13 +52,22 @@ void qemu_mutex_lock(QemuMutex *mutex)
     int err;
 
     err = pthread_mutex_lock(&mutex->lock);
+    assert (pthread_equal(mutex->owner, pthread_null));
+    mutex->owner = pthread_self();
     if (err)
         error_exit(err, __func__);
 }
 
 int qemu_mutex_trylock(QemuMutex *mutex)
 {
-    return pthread_mutex_trylock(&mutex->lock);
+    int err;
+    err = pthread_mutex_trylock(&mutex->lock);
+    if (err == 0) {
+        assert (pthread_equal(mutex->owner, pthread_null));
+        mutex->owner = pthread_self();
+    }
+
+    return !!err;
 }
 
 static void timespec_add_ms(struct timespec *ts, uint64_t msecs)
@@ -85,6 +98,8 @@ void qemu_mutex_unlock(QemuMutex *mutex)
 {
     int err;
 
+    assert (pthread_equal(mutex->owner, pthread_self()));
+    mutex->owner = pthread_null;
     err = pthread_mutex_unlock(&mutex->lock);
     if (err)
         error_exit(err, __func__);
@@ -130,7 +145,10 @@ void qemu_cond_wait(QemuCond *cond, QemuMutex *mutex)
 {
     int err;
 
+    assert (pthread_equal(mutex->owner, pthread_self()));
+    mutex->owner = pthread_null;
     err = pthread_cond_wait(&cond->cond, &mutex->lock);
+    mutex->owner = pthread_self();
     if (err)
         error_exit(err, __func__);
 }
diff --git a/qemu-thread-posix.h b/qemu-thread-posix.h
index 7af371c..11978db 100644
--- a/qemu-thread-posix.h
+++ b/qemu-thread-posix.h
@@ -4,6 +4,7 @@
 
 struct QemuMutex {
     pthread_mutex_t lock;
+    pthread_t owner;
 };
 
 struct QemuCond {
-- 
1.7.3.5

  parent reply	other threads:[~2011-02-10 17:38 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-02-10 17:37 [Qemu-devel] [PATCH 0/7] Win32 queue, part 1 Paolo Bonzini
2011-02-10 17:37 ` [Qemu-devel] [PATCH 1/7] unlock iothread during WaitForMultipleObjects Paolo Bonzini
2011-02-10 17:37 ` [Qemu-devel] [PATCH 2/7] implement win32 dynticks timer Paolo Bonzini
2011-02-20 21:15   ` [Qemu-devel] " Blue Swirl
2011-02-21  8:07     ` Paolo Bonzini
2011-02-10 17:37 ` [Qemu-devel] [PATCH 3/7] use win32 timer queues Paolo Bonzini
2011-02-10 17:37 ` [Qemu-devel] [PATCH 4/7] add win32 qemu-thread implementation Paolo Bonzini
2011-02-10 19:46   ` [Qemu-devel] " Stefan Weil
2011-02-11 12:28     ` Paolo Bonzini
2011-02-20 21:11       ` Blue Swirl
2011-02-10 17:37 ` [Qemu-devel] [PATCH 5/7] include qemu-thread.h early Paolo Bonzini
2011-02-10 17:37 ` Paolo Bonzini [this message]
2011-02-10 18:25   ` [Qemu-devel] Re: [PATCH 6/7] add assertions on the owner of a QemuMutex Jan Kiszka
2011-02-11 12:14     ` Paolo Bonzini
2011-02-11 12:54       ` Jan Kiszka
2011-02-10 17:37 ` [Qemu-devel] [PATCH 7/7] remove CONFIG_THREAD Paolo Bonzini

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1297359464-9789-7-git-send-email-pbonzini@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=blauwirbel@gmail.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).