mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-07-31 06:13:29 +02:00
Added errorcheck mutexes. These are activated through the preprocessor
2000-09-29 Sebastian Wilhelmi <wilhelmi@ira.uka.de> * configure.in, glib.h: Added errorcheck mutexes. These are activated through the preprocessor symbol G_ERRORCHECK_MUTEXES. Need to add an extra word to StaticMutex in order to achieve this. g_(static_)mutex_* functions instrument the mutex operations with mutex name and location, when compiled with -DG_ERRORCHECK_MUTEXES. g_thread_init activates the errorcheck mutexes, when compiled with -DG_ERRORCHECK_MUTEXES. * gthread/gthread-impl.c: Added errorcheck mutexes. New exported function g_thread_init_with_errorcheck_mutexes, which is called instead of g_thread_init, when compiled with -DG_ERRORCHECK_MUTEXES. New static functions g_mutex_(new|lock|trylock|unlock|free)_errorcheck_impl to implement errorcheck mutexes. * gthread/gthread-posix.impl.c, gthread/gthread-solaris-impl.c: Define the size of a mutex.
This commit is contained in:
committed by
Sebastian Wilhelmi
parent
349eaa6a25
commit
7633908c93
@@ -1,3 +1,15 @@
|
||||
2000-09-29 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
|
||||
|
||||
* gthread-impl.c: Added errorcheck mutexes. New exported function
|
||||
g_thread_init_with_errorcheck_mutexes, which is called instead of
|
||||
g_thread_init, when compiled with -DG_ERRORCHECK_MUTEXES. New
|
||||
static functions
|
||||
g_mutex_(new|lock|trylock|unlock|free)_errorcheck_impl to
|
||||
implement errorcheck mutexes.
|
||||
|
||||
* gthread-posix.impl.c, gthread-solaris-impl.c: Define the size of
|
||||
a mutex.
|
||||
|
||||
2000-09-21 Tor Lillqvist <tml@iki.fi>
|
||||
|
||||
* makefile.mingw.in: Use pthreads macros from ../build.
|
||||
|
@@ -48,6 +48,153 @@ void g_mutex_init (void);
|
||||
void g_mem_init (void);
|
||||
void g_messages_init (void);
|
||||
|
||||
#define G_MUTEX_DEBUG_INFO(mutex) (*((gpointer*)(((char*)mutex)+G_MUTEX_SIZE)))
|
||||
|
||||
typedef struct _ErrorCheckInfo ErrorCheckInfo;
|
||||
struct _ErrorCheckInfo
|
||||
{
|
||||
gchar *name;
|
||||
gchar *location;
|
||||
GThread *owner;
|
||||
};
|
||||
|
||||
static GMutex *
|
||||
g_mutex_new_errorcheck_impl (void)
|
||||
{
|
||||
GMutex *retval = g_thread_functions_for_glib_use_default.mutex_new ();
|
||||
retval = g_realloc (retval, G_MUTEX_SIZE + sizeof (gpointer));
|
||||
G_MUTEX_DEBUG_INFO (retval) = NULL;
|
||||
return retval;
|
||||
}
|
||||
|
||||
static inline void
|
||||
fill_info (ErrorCheckInfo *info,
|
||||
GThread *self,
|
||||
gulong magic,
|
||||
gchar *name,
|
||||
gchar *location)
|
||||
{
|
||||
info->owner = self;
|
||||
if (magic == G_MUTEX_DEBUG_MAGIC)
|
||||
{
|
||||
/* We are used with special instrumented calls, where name and
|
||||
* location is provided as well, so use them */
|
||||
info->name = name;
|
||||
info->location = location;
|
||||
}
|
||||
else
|
||||
info->name = info->location = "unknown";
|
||||
}
|
||||
|
||||
static void
|
||||
g_mutex_lock_errorcheck_impl (GMutex *mutex,
|
||||
gulong magic,
|
||||
gchar *name,
|
||||
gchar *location)
|
||||
{
|
||||
ErrorCheckInfo *info;
|
||||
GThread *self = g_thread_self ();
|
||||
if (G_MUTEX_DEBUG_INFO (mutex) == NULL)
|
||||
{
|
||||
/* if the debug info is NULL, we have not yet locked that mutex,
|
||||
* so we do it now */
|
||||
g_thread_functions_for_glib_use_default.mutex_lock (mutex);
|
||||
/* Now we have to check again, because anothe thread might mave
|
||||
* locked the mutex at the same time, we did. This technique is
|
||||
* not 100% save on systems without decent cache coherence,
|
||||
* but we have no choice */
|
||||
if (G_MUTEX_DEBUG_INFO (mutex) == NULL)
|
||||
{
|
||||
info = G_MUTEX_DEBUG_INFO (mutex) = g_new0 (ErrorCheckInfo, 1);
|
||||
}
|
||||
g_thread_functions_for_glib_use_default.mutex_unlock (mutex);
|
||||
}
|
||||
|
||||
info = G_MUTEX_DEBUG_INFO (mutex);
|
||||
if (info->owner == self)
|
||||
g_error ("Trying to recursivly lock the mutex '%s' at '%s', "
|
||||
"previously locked by name '%s' at '%s'",
|
||||
name, location, info->name, info->location);
|
||||
|
||||
g_thread_functions_for_glib_use_default.mutex_lock (mutex);
|
||||
|
||||
fill_info (info, self, magic, name, location);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
g_mutex_trylock_errorcheck_impl (GMutex *mutex,
|
||||
gulong magic,
|
||||
gchar *name,
|
||||
gchar *location)
|
||||
{
|
||||
ErrorCheckInfo *info = G_MUTEX_DEBUG_INFO (mutex);
|
||||
GThread *self = g_thread_self ();
|
||||
if (!info)
|
||||
{
|
||||
/* This mutex has not yet been used, so simply lock and return TRUE */
|
||||
g_mutex_lock_errorcheck_impl (mutex, magic, name, location);
|
||||
return TRUE;
|
||||
}
|
||||
if (info->owner == self)
|
||||
g_error ("Trying to recursivly lock the mutex '%s' at '%s', "
|
||||
"previously locked by name '%s' at '%s'",
|
||||
name, location, info->name, info->location);
|
||||
|
||||
if (!g_thread_functions_for_glib_use_default.mutex_trylock (mutex))
|
||||
return FALSE;
|
||||
|
||||
fill_info (info, self, magic, name, location);
|
||||
return TRUE;
|
||||
}
|
||||
|
||||
static void
|
||||
g_mutex_unlock_errorcheck_impl (GMutex *mutex,
|
||||
gulong magic,
|
||||
gchar *name,
|
||||
gchar *location)
|
||||
{
|
||||
ErrorCheckInfo *info = G_MUTEX_DEBUG_INFO (mutex);
|
||||
GThread *self = g_thread_self ();
|
||||
if (magic != G_MUTEX_DEBUG_MAGIC)
|
||||
name = location = "unknown";
|
||||
if (!info || info->owner != self)
|
||||
g_error ("Trying to unlock the unlocked mutex '%s' at '%s'",
|
||||
name, location);
|
||||
info->owner = NULL;
|
||||
info->name = info->location = NULL;
|
||||
g_thread_functions_for_glib_use_default.mutex_unlock (mutex);
|
||||
}
|
||||
|
||||
static void
|
||||
g_mutex_free_errorcheck_impl (GMutex *mutex)
|
||||
{
|
||||
g_free (G_MUTEX_DEBUG_INFO (mutex));
|
||||
g_thread_functions_for_glib_use_default.mutex_free (mutex);
|
||||
}
|
||||
|
||||
/* unshadow function declaration. See glib.h */
|
||||
#undef g_thread_init
|
||||
|
||||
void
|
||||
g_thread_init_with_errorcheck_mutexes (GThreadFunctions* init)
|
||||
{
|
||||
GThreadFunctions errorcheck_functions;
|
||||
if (init)
|
||||
g_error ("Errorcheck mutexes can only be used for native "
|
||||
"thread implementations. Sorry." );
|
||||
errorcheck_functions = g_thread_functions_for_glib_use_default;
|
||||
errorcheck_functions.mutex_new = g_mutex_new_errorcheck_impl;
|
||||
errorcheck_functions.mutex_lock =
|
||||
(void (*)(GMutex *)) g_mutex_lock_errorcheck_impl;
|
||||
errorcheck_functions.mutex_trylock =
|
||||
(gboolean (*)(GMutex *)) g_mutex_trylock_errorcheck_impl;
|
||||
errorcheck_functions.mutex_unlock =
|
||||
(void (*)(GMutex *)) g_mutex_unlock_errorcheck_impl;
|
||||
errorcheck_functions.mutex_free = g_mutex_free_errorcheck_impl;
|
||||
|
||||
g_thread_init (&errorcheck_functions);
|
||||
}
|
||||
|
||||
void
|
||||
g_thread_init (GThreadFunctions* init)
|
||||
{
|
||||
|
@@ -73,6 +73,8 @@
|
||||
|
||||
gulong g_thread_min_stack_size = 0;
|
||||
|
||||
#define G_MUTEX_SIZE (sizeof (pthread_mutex_t))
|
||||
|
||||
#define HAVE_G_THREAD_IMPL_INIT
|
||||
static void
|
||||
g_thread_impl_init()
|
||||
|
@@ -51,6 +51,8 @@
|
||||
|
||||
gulong g_thread_min_stack_size = 0;
|
||||
|
||||
#define G_MUTEX_SIZE (sizeof (mutex_t))
|
||||
|
||||
#define HAVE_G_THREAD_IMPL_INIT
|
||||
static void
|
||||
g_thread_impl_init()
|
||||
|
Reference in New Issue
Block a user