Mesa (master): util: Make refcnt and symbol debuggers work on windows

Jakob Bornecrantz wallbraker at kemper.freedesktop.org
Fri Feb 18 14:49:26 UTC 2011


Module: Mesa
Branch: master
Commit: 52ad45677dd3d8a50836edea9f5841aa12d70419
URL:    http://cgit.freedesktop.org/mesa/mesa/commit/?id=52ad45677dd3d8a50836edea9f5841aa12d70419

Author: Jakob Bornecrantz <jakob at vmware.com>
Date:   Thu Feb 17 11:18:02 2011 +0000

util: Make refcnt and symbol debuggers work on windows

Signed-off-by: Jakob Bornecrantz <jakob at vmware.com>

---

 src/gallium/auxiliary/util/u_debug_refcnt.c |   12 +++++++++++-
 src/gallium/auxiliary/util/u_debug_symbol.c |   11 ++++++++++-
 2 files changed, 21 insertions(+), 2 deletions(-)

diff --git a/src/gallium/auxiliary/util/u_debug_refcnt.c b/src/gallium/auxiliary/util/u_debug_refcnt.c
index 40a26c9..6f706a3 100644
--- a/src/gallium/auxiliary/util/u_debug_refcnt.c
+++ b/src/gallium/auxiliary/util/u_debug_refcnt.c
@@ -43,7 +43,8 @@ int debug_refcnt_state;
 struct os_stream* stream;
 
 /* TODO: maybe move this serial machinery to a stand-alone module and expose it? */
-static pipe_mutex serials_mutex;
+pipe_static_mutex(serials_mutex);
+
 static struct util_hash_table* serials_hash;
 static unsigned serials_last;
 
@@ -66,6 +67,15 @@ static boolean debug_serial(void* p, unsigned* pserial)
 {
    unsigned serial;
    boolean found = TRUE;
+#ifdef PIPE_SUBSYSTEM_WINDOWS_USER
+   static boolean first = TRUE;
+
+   if (first) {
+      pipe_mutex_init(serials_mutex);
+      first = FALSE;
+   }
+#endif
+
    pipe_mutex_lock(serials_mutex);
    if(!serials_hash)
       serials_hash = util_hash_table_create(hash_ptr, compare_ptr);
diff --git a/src/gallium/auxiliary/util/u_debug_symbol.c b/src/gallium/auxiliary/util/u_debug_symbol.c
index cb03930..bae9be8 100644
--- a/src/gallium/auxiliary/util/u_debug_symbol.c
+++ b/src/gallium/auxiliary/util/u_debug_symbol.c
@@ -196,7 +196,7 @@ debug_symbol_print(const void *addr)
 }
 
 struct util_hash_table* symbols_hash;
-pipe_mutex symbols_mutex;
+pipe_static_mutex(symbols_mutex);
 
 static unsigned hash_ptr(void* p)
 {
@@ -217,6 +217,15 @@ const char*
 debug_symbol_name_cached(const void *addr)
 {
    const char* name;
+#ifdef PIPE_SUBSYSTEM_WINDOWS_USER
+   static boolean first = TRUE;
+
+   if (first) {
+      pipe_mutex_init(symbols_mutex);
+      first = FALSE;
+   }
+#endif
+
    pipe_mutex_lock(symbols_mutex);
    if(!symbols_hash)
       symbols_hash = util_hash_table_create(hash_ptr, compare_ptr);




More information about the mesa-commit mailing list