1998-12-15 06:28:02 +01:00
|
|
|
/* GLIB - Library of useful routines for C programming
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* gthread.c: thread related functions
|
|
|
|
* Copyright 1998 Sebastian Wilhelmi; University of Karlsruhe
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
2000-07-26 13:02:02 +02:00
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
1998-12-15 06:28:02 +01:00
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2000-07-26 13:02:02 +02:00
|
|
|
* Lesser General Public License for more details.
|
1998-12-15 06:28:02 +01:00
|
|
|
*
|
2000-07-26 13:02:02 +02:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
1998-12-15 06:28:02 +01:00
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
1999-02-24 07:14:27 +01:00
|
|
|
/*
|
2000-07-26 13:02:02 +02:00
|
|
|
* Modified by the GLib Team and others 1997-2000. See the AUTHORS
|
1999-02-24 07:14:27 +01:00
|
|
|
* file for a list of people on the GLib Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
2006-05-11 02:18:46 +02:00
|
|
|
* GLib at ftp://ftp.gtk.org/pub/gtk/.
|
1999-02-24 07:14:27 +01:00
|
|
|
*/
|
|
|
|
|
2006-05-11 02:18:46 +02:00
|
|
|
/*
|
1998-12-15 06:28:02 +01:00
|
|
|
* MT safe
|
|
|
|
*/
|
|
|
|
|
2006-05-10 01:07:27 +02:00
|
|
|
#include "config.h"
|
1998-12-15 06:28:02 +01:00
|
|
|
|
2006-05-10 01:07:27 +02:00
|
|
|
#include "glib.h"
|
Renamed to glib/gthreadprivate.h and moved system thread identifier
2006-05-09 Sebastian Wilhelmi <wilhelmi@google.com>
* glib/gthreadinit.h: Renamed to glib/gthreadprivate.h and moved
system thread identifier comparision and assignment macros from
glib/gthread.c to glib/gthreadprivate.h.
* glib/Makefile.am, glib/gatomic.c, glib/gconvert.c, glib/gmain.c,
glib/gmem.c, glib/gmessages.c, glib/grand.c, glib/gslice.c,
glib/gthread.c, glib/gutils.c, gthread/gthread-impl.c: Use
glib/gthreadprivate.h instead of glib/gthreadinit.h.
* gthread/gthread-impl.c: Use GSystemThread instead of GThread for
owner determination. This fixes #311043 and is mostly modeled
after the patch from jylefort@FreeBSD.org.
2006-05-10 02:44:50 +02:00
|
|
|
#include "gthreadprivate.h"
|
1998-12-15 06:28:02 +01:00
|
|
|
|
|
|
|
static gboolean thread_system_already_initialized = FALSE;
|
2001-09-25 09:17:50 +02:00
|
|
|
static gint g_thread_priority_map [G_THREAD_PRIORITY_URGENT + 1];
|
1998-12-15 06:28:02 +01:00
|
|
|
|
|
|
|
#include G_THREAD_SOURCE
|
|
|
|
|
2000-11-21 16:27:44 +01:00
|
|
|
#ifndef PRIORITY_LOW_VALUE
|
|
|
|
# define PRIORITY_LOW_VALUE 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef PRIORITY_URGENT_VALUE
|
|
|
|
# define PRIORITY_URGENT_VALUE 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef PRIORITY_NORMAL_VALUE
|
2002-08-06 15:31:26 +02:00
|
|
|
# define PRIORITY_NORMAL_VALUE \
|
|
|
|
((PRIORITY_LOW_VALUE * 6 + PRIORITY_URGENT_VALUE * 4) / 10)
|
2000-11-21 16:27:44 +01:00
|
|
|
#endif /* PRIORITY_NORMAL_VALUE */
|
|
|
|
|
|
|
|
#ifndef PRIORITY_HIGH_VALUE
|
2002-08-06 15:31:26 +02:00
|
|
|
# define PRIORITY_HIGH_VALUE \
|
|
|
|
((PRIORITY_NORMAL_VALUE + PRIORITY_URGENT_VALUE * 2) / 3)
|
2000-11-21 16:27:44 +01:00
|
|
|
#endif /* PRIORITY_HIGH_VALUE */
|
|
|
|
|
1998-12-15 06:28:02 +01:00
|
|
|
void
|
1998-12-16 06:38:35 +01:00
|
|
|
g_thread_init (GThreadFunctions* init)
|
1998-12-15 06:28:02 +01:00
|
|
|
{
|
|
|
|
gboolean supported;
|
|
|
|
|
|
|
|
if (thread_system_already_initialized)
|
2010-01-12 21:16:59 +01:00
|
|
|
{
|
|
|
|
if (init != NULL)
|
|
|
|
g_warning ("GThread system already initialized, ignoring custom thread implementation.");
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
2006-05-11 02:18:46 +02:00
|
|
|
|
1998-12-15 06:28:02 +01:00
|
|
|
thread_system_already_initialized = TRUE;
|
|
|
|
|
|
|
|
if (init == NULL)
|
2001-05-22 14:28:06 +02:00
|
|
|
{
|
|
|
|
#ifdef HAVE_G_THREAD_IMPL_INIT
|
|
|
|
/* now do any initialization stuff required by the
|
|
|
|
* implementation, but only if called with a NULL argument, of
|
|
|
|
* course. Otherwise it's up to the user to do so. */
|
|
|
|
g_thread_impl_init();
|
|
|
|
#endif /* HAVE_G_THREAD_IMPL_INIT */
|
|
|
|
init = &g_thread_functions_for_glib_use_default;
|
|
|
|
}
|
1998-12-15 06:28:02 +01:00
|
|
|
else
|
|
|
|
g_thread_use_default_impl = FALSE;
|
|
|
|
|
|
|
|
g_thread_functions_for_glib_use = *init;
|
2001-05-22 14:28:06 +02:00
|
|
|
|
2006-05-11 02:18:46 +02:00
|
|
|
supported = (init->mutex_new &&
|
|
|
|
init->mutex_lock &&
|
|
|
|
init->mutex_trylock &&
|
|
|
|
init->mutex_unlock &&
|
|
|
|
init->mutex_free &&
|
|
|
|
init->cond_new &&
|
|
|
|
init->cond_signal &&
|
|
|
|
init->cond_broadcast &&
|
|
|
|
init->cond_wait &&
|
1998-12-16 06:38:35 +01:00
|
|
|
init->cond_timed_wait &&
|
|
|
|
init->cond_free &&
|
|
|
|
init->private_new &&
|
|
|
|
init->private_get &&
|
2002-04-18 13:42:01 +02:00
|
|
|
init->private_set &&
|
2001-05-22 14:28:06 +02:00
|
|
|
init->thread_create &&
|
|
|
|
init->thread_yield &&
|
|
|
|
init->thread_join &&
|
|
|
|
init->thread_exit &&
|
|
|
|
init->thread_set_priority &&
|
2007-01-16 22:25:03 +01:00
|
|
|
init->thread_self);
|
1998-12-15 06:28:02 +01:00
|
|
|
|
|
|
|
/* if somebody is calling g_thread_init (), it means that he wants to
|
1998-12-16 06:38:35 +01:00
|
|
|
* have thread support, so check this
|
|
|
|
*/
|
1998-12-15 06:28:02 +01:00
|
|
|
if (!supported)
|
|
|
|
{
|
|
|
|
if (g_thread_use_default_impl)
|
|
|
|
g_error ("Threads are not supported on this platform.");
|
|
|
|
else
|
|
|
|
g_error ("The supplied thread function vector is invalid.");
|
|
|
|
}
|
|
|
|
|
2000-11-21 16:27:44 +01:00
|
|
|
g_thread_priority_map [G_THREAD_PRIORITY_LOW] = PRIORITY_LOW_VALUE;
|
|
|
|
g_thread_priority_map [G_THREAD_PRIORITY_NORMAL] = PRIORITY_NORMAL_VALUE;
|
|
|
|
g_thread_priority_map [G_THREAD_PRIORITY_HIGH] = PRIORITY_HIGH_VALUE;
|
|
|
|
g_thread_priority_map [G_THREAD_PRIORITY_URGENT] = PRIORITY_URGENT_VALUE;
|
|
|
|
|
2003-02-14 16:08:46 +01:00
|
|
|
g_thread_init_glib ();
|
Completed the thread support in GLib. Thread creation, prioritizing
1999-06-17 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* configure.in, acglib.m4, acconfig.h, glib.h, gthread.c:
Completed the thread support in GLib. Thread creation,
prioritizing threads, yielding, joining threads as well as
reader/writer locks and recursive mutexes are now in place. Please
test heavily on your platform. It is so far tested on
Linux/i386/pthreads, Solaris/Sparc/pthreads and
Solaris/Sparc/solaristhreads.
* gtimer.c, glib.h: Implement g_usleep (gulong microseconds) for
thread safe sleeping. (sleep() is not MT-safe at all!)
* gutils.c: Avoid compiler warning.
* tests/Makefile.am, tests/thread-test.c: New program to test some
aspects of the thread implementation.
* gthread.c, Makefile.am: Renamed from gmutex.c to reflect the
change of content.
* configure.in: Purged all appearances of nspr.
* gthread/gthread-posix.c, gthread-solaris.c: Added the native
implementations for the GLib's extended thread support.
* gthread/gthread-nspr.c: Removed for good. NSPR is nothing we
would want to build upon.
* gthread/gthread.c: Renamed to gthread-impl.c to avoid
confusion with ../gthread.c (Formerly known as the file called
gmutex.c)
* gthread/testgthread.c: Removed. The new and much extended
tests are in ../tests/thread-test.c.
* gthread/Makefile.am: Changed to reflect the changes above.
1999-06-17 17:39:31 +02:00
|
|
|
}
|
2011-08-31 22:01:09 +02:00
|
|
|
|
|
|
|
void
|
|
|
|
g_thread_init_with_errorcheck_mutexes (GThreadFunctions *vtable)
|
|
|
|
{
|
|
|
|
g_assert (vtable == NULL);
|
|
|
|
|
|
|
|
g_thread_init (NULL);
|
|
|
|
}
|