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
|
|
|
/* GLIB - Library of useful routines for C programming
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
2003-07-09 01:43:48 +02:00
|
|
|
* gthread.c: MT safety related functions
|
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
|
|
|
* Copyright 1998 Sebastian Wilhelmi; University of Karlsruhe
|
|
|
|
* Owen Taylor
|
|
|
|
*
|
|
|
|
* 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
|
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
|
|
|
* 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.
|
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
|
|
|
*
|
2000-07-26 13:02:02 +02:00
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
2014-01-23 12:58:29 +01:00
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
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
|
|
|
*/
|
|
|
|
|
2010-01-30 18:32:09 +01:00
|
|
|
/* Prelude {{{1 ----------------------------------------------------------- */
|
|
|
|
|
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
|
|
|
/*
|
2000-07-26 13:02:02 +02:00
|
|
|
* Modified by the GLib Team and others 1997-2000. See the AUTHORS
|
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
|
|
|
* 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:10:29 +02:00
|
|
|
* GLib at ftp://ftp.gtk.org/pub/gtk/.
|
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
|
|
|
*/
|
|
|
|
|
2006-05-11 02:10:29 +02:00
|
|
|
/*
|
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
|
|
|
* MT safe
|
|
|
|
*/
|
|
|
|
|
2007-07-10 12:30:36 +02:00
|
|
|
/* implement gthread.h's inline functions */
|
|
|
|
#define G_IMPLEMENT_INLINES 1
|
|
|
|
#define __G_THREAD_C__
|
|
|
|
|
1999-06-21 00:20:43 +02:00
|
|
|
#include "config.h"
|
|
|
|
|
2011-10-02 00:43:15 +02:00
|
|
|
#include "gthread.h"
|
2007-01-12 18:31:31 +01:00
|
|
|
#include "gthreadprivate.h"
|
2011-10-02 00:43:15 +02:00
|
|
|
|
2011-10-02 23:05:03 +02:00
|
|
|
#include <string.h>
|
2007-01-12 18:31:31 +01:00
|
|
|
|
Replace #ifdef HAVE_UNISTD_H checks with #ifdef G_OS_UNIX
In Windows development environments that have it, <unistd.h> is mostly
just a wrapper around several other native headers (in particular,
<io.h>, which contains read(), close(), etc, and <process.h>, which
contains getpid()). But given that some Windows dev environments don't
have <unistd.h>, everything that uses those functions on Windows
already needed to include the correct Windows header as well, and so
there is never any point to including <unistd.h> on Windows.
Also, remove some <unistd.h> includes (and a few others) that were
unnecessary even on unix.
https://bugzilla.gnome.org/show_bug.cgi?id=710519
2013-10-19 19:04:00 +02:00
|
|
|
#ifdef G_OS_UNIX
|
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
|
|
|
#include <unistd.h>
|
1999-06-21 00:20:43 +02:00
|
|
|
#endif
|
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
|
|
|
|
2007-01-08 06:13:15 +01:00
|
|
|
#ifndef G_OS_WIN32
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <time.h>
|
2007-01-12 20:23:27 +01:00
|
|
|
#else
|
|
|
|
#include <windows.h>
|
2007-01-08 06:13:15 +01:00
|
|
|
#endif /* G_OS_WIN32 */
|
|
|
|
|
2011-10-02 23:05:03 +02:00
|
|
|
#include "gslice.h"
|
2011-11-15 04:18:13 +01:00
|
|
|
#include "gstrfuncs.h"
|
2010-05-06 06:28:54 +02:00
|
|
|
#include "gtestutils.h"
|
2015-12-23 17:28:50 +01:00
|
|
|
#include "glib_trace.h"
|
2010-05-06 06:28:54 +02:00
|
|
|
|
2010-01-30 18:32:09 +01:00
|
|
|
/**
|
2011-02-01 19:17:23 +01:00
|
|
|
* SECTION:threads
|
2010-01-30 18:32:09 +01:00
|
|
|
* @title: Threads
|
2011-09-25 01:00:19 +02:00
|
|
|
* @short_description: portable support for threads, mutexes, locks,
|
|
|
|
* conditions and thread private data
|
2010-01-30 18:32:09 +01:00
|
|
|
* @see_also: #GThreadPool, #GAsyncQueue
|
|
|
|
*
|
|
|
|
* Threads act almost like processes, but unlike processes all threads
|
|
|
|
* of one process share the same memory. This is good, as it provides
|
|
|
|
* easy communication between the involved threads via this shared
|
|
|
|
* memory, and it is bad, because strange things (so called
|
|
|
|
* "Heisenbugs") might happen if the program is not carefully designed.
|
|
|
|
* In particular, due to the concurrent nature of threads, no
|
|
|
|
* assumptions on the order of execution of code running in different
|
|
|
|
* threads can be made, unless order is explicitly forced by the
|
|
|
|
* programmer through synchronization primitives.
|
|
|
|
*
|
2011-09-25 01:00:19 +02:00
|
|
|
* The aim of the thread-related functions in GLib is to provide a
|
2010-01-30 18:32:09 +01:00
|
|
|
* portable means for writing multi-threaded software. There are
|
|
|
|
* primitives for mutexes to protect the access to portions of memory
|
2011-09-22 07:16:41 +02:00
|
|
|
* (#GMutex, #GRecMutex and #GRWLock). There is a facility to use
|
|
|
|
* individual bits for locks (g_bit_lock()). There are primitives
|
|
|
|
* for condition variables to allow synchronization of threads (#GCond).
|
2011-10-15 17:37:03 +02:00
|
|
|
* There are primitives for thread-private data - data that every
|
|
|
|
* thread has a private instance of (#GPrivate). There are facilities
|
|
|
|
* for one-time initialization (#GOnce, g_once_init_enter()). Finally,
|
|
|
|
* there are primitives to create and manage threads (#GThread).
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
2011-10-06 04:43:22 +02:00
|
|
|
* The GLib threading system used to be initialized with g_thread_init().
|
|
|
|
* This is no longer necessary. Since version 2.32, the GLib threading
|
|
|
|
* system is automatically initialized at the start of your program,
|
|
|
|
* and all thread-creation functions and synchronization primitives
|
2011-10-15 19:04:20 +02:00
|
|
|
* are available right away.
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
2011-10-15 19:04:20 +02:00
|
|
|
* Note that it is not safe to assume that your program has no threads
|
|
|
|
* even if you don't call g_thread_new() yourself. GLib and GIO can
|
|
|
|
* and will create threads for their own purposes in some cases, such
|
2011-12-14 05:00:16 +01:00
|
|
|
* as when using g_unix_signal_source_new() or when using GDBus.
|
2011-10-15 19:04:20 +02:00
|
|
|
*
|
|
|
|
* Originally, UNIX did not have threads, and therefore some traditional
|
|
|
|
* UNIX APIs are problematic in threaded programs. Some notable examples
|
|
|
|
* are
|
2014-02-01 06:26:38 +01:00
|
|
|
*
|
|
|
|
* - C library functions that return data in statically allocated
|
|
|
|
* buffers, such as strtok() or strerror(). For many of these,
|
|
|
|
* there are thread-safe variants with a _r suffix, or you can
|
|
|
|
* look at corresponding GLib APIs (like g_strsplit() or g_strerror()).
|
|
|
|
*
|
2014-02-15 03:33:36 +01:00
|
|
|
* - The functions setenv() and unsetenv() manipulate the process
|
|
|
|
* environment in a not thread-safe way, and may interfere with getenv()
|
|
|
|
* calls in other threads. Note that getenv() calls may be hidden behind
|
2014-02-02 03:18:29 +01:00
|
|
|
* other APIs. For example, GNU gettext() calls getenv() under the
|
|
|
|
* covers. In general, it is best to treat the environment as readonly.
|
|
|
|
* If you absolutely have to modify the environment, do it early in
|
|
|
|
* main(), when no other threads are around yet.
|
2014-02-01 06:26:38 +01:00
|
|
|
*
|
2014-02-15 03:33:36 +01:00
|
|
|
* - The setlocale() function changes the locale for the entire process,
|
|
|
|
* affecting all threads. Temporary changes to the locale are often made
|
|
|
|
* to change the behavior of string scanning or formatting functions
|
2014-02-01 06:26:38 +01:00
|
|
|
* like scanf() or printf(). GLib offers a number of string APIs
|
|
|
|
* (like g_ascii_formatd() or g_ascii_strtod()) that can often be
|
|
|
|
* used as an alternative. Or you can use the uselocale() function
|
|
|
|
* to change the locale only for the current thread.
|
|
|
|
*
|
2014-02-15 03:33:36 +01:00
|
|
|
* - The fork() function only takes the calling thread into the child's
|
|
|
|
* copy of the process image. If other threads were executing in critical
|
2014-02-01 06:26:38 +01:00
|
|
|
* sections they could have left mutexes locked which could easily
|
|
|
|
* cause deadlocks in the new child. For this reason, you should
|
|
|
|
* call exit() or exec() as soon as possible in the child and only
|
|
|
|
* make signal-safe library calls before that.
|
|
|
|
*
|
2014-02-15 03:33:36 +01:00
|
|
|
* - The daemon() function uses fork() in a way contrary to what is
|
|
|
|
* described above. It should not be used with GLib programs.
|
2011-10-15 19:04:20 +02:00
|
|
|
*
|
|
|
|
* GLib itself is internally completely thread-safe (all global data is
|
2011-10-06 04:43:22 +02:00
|
|
|
* automatically locked), but individual data structure instances are
|
|
|
|
* not automatically locked for performance reasons. For example,
|
|
|
|
* you must coordinate accesses to the same #GHashTable from multiple
|
|
|
|
* threads. The two notable exceptions from this rule are #GMainLoop
|
2014-02-01 02:34:33 +01:00
|
|
|
* and #GAsyncQueue, which are thread-safe and need no further
|
|
|
|
* application-level locking to be accessed from multiple threads.
|
|
|
|
* Most refcounting functions such as g_object_ref() are also thread-safe.
|
2014-12-19 18:05:36 +01:00
|
|
|
*
|
|
|
|
* A common use for #GThreads is to move a long-running blocking operation out
|
|
|
|
* of the main thread and into a worker thread. For GLib functions, such as
|
|
|
|
* single GIO operations, this is not necessary, and complicates the code.
|
|
|
|
* Instead, the `…_async()` version of the function should be used from the main
|
|
|
|
* thread, eliminating the need for locking and synchronisation between multiple
|
|
|
|
* threads. If an operation does need to be moved to a worker thread, consider
|
|
|
|
* using g_task_run_in_thread(), or a #GThreadPool. #GThreadPool is often a
|
|
|
|
* better choice than #GThread, as it handles thread reuse and task queueing;
|
|
|
|
* #GTask uses this internally.
|
|
|
|
*
|
|
|
|
* However, if multiple blocking operations need to be performed in sequence,
|
|
|
|
* and it is not possible to use #GTask for them, moving them to a worker thread
|
|
|
|
* can clarify the code.
|
2011-09-22 07:16:41 +02:00
|
|
|
*/
|
2010-01-30 18:32:09 +01:00
|
|
|
|
|
|
|
/* G_LOCK Documentation {{{1 ---------------------------------------------- */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* G_LOCK_DEFINE:
|
2011-10-03 05:43:17 +02:00
|
|
|
* @name: the name of the lock
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
2014-02-01 06:26:38 +01:00
|
|
|
* The #G_LOCK_ macros provide a convenient interface to #GMutex.
|
2011-10-03 05:43:17 +02:00
|
|
|
* #G_LOCK_DEFINE defines a lock. It can appear in any place where
|
2010-01-30 18:32:09 +01:00
|
|
|
* variable definitions may appear in programs, i.e. in the first block
|
|
|
|
* of a function or outside of functions. The @name parameter will be
|
2011-09-29 15:58:57 +02:00
|
|
|
* mangled to get the name of the #GMutex. This means that you
|
2010-01-30 18:32:09 +01:00
|
|
|
* can use names of existing variables as the parameter - e.g. the name
|
2011-10-03 05:43:17 +02:00
|
|
|
* of the variable you intend to protect with the lock. Look at our
|
2014-02-01 03:56:33 +01:00
|
|
|
* give_me_next_number() example using the #G_LOCK macros:
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
2014-02-01 03:56:33 +01:00
|
|
|
* Here is an example for using the #G_LOCK convenience macros:
|
2014-02-01 21:11:49 +01:00
|
|
|
* |[<!-- language="C" -->
|
2010-01-31 03:55:03 +01:00
|
|
|
* G_LOCK_DEFINE (current_number);
|
|
|
|
*
|
|
|
|
* int
|
|
|
|
* give_me_next_number (void)
|
|
|
|
* {
|
|
|
|
* static int current_number = 0;
|
|
|
|
* int ret_val;
|
|
|
|
*
|
|
|
|
* G_LOCK (current_number);
|
|
|
|
* ret_val = current_number = calc_next_number (current_number);
|
|
|
|
* G_UNLOCK (current_number);
|
|
|
|
*
|
|
|
|
* return ret_val;
|
|
|
|
* }
|
2014-02-01 03:56:33 +01:00
|
|
|
* ]|
|
2011-09-25 07:32:41 +02:00
|
|
|
*/
|
2010-01-30 18:32:09 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* G_LOCK_DEFINE_STATIC:
|
2011-10-03 05:43:17 +02:00
|
|
|
* @name: the name of the lock
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
|
|
|
* This works like #G_LOCK_DEFINE, but it creates a static object.
|
2011-09-25 07:32:41 +02:00
|
|
|
*/
|
2010-01-30 18:32:09 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* G_LOCK_EXTERN:
|
2011-10-03 05:43:17 +02:00
|
|
|
* @name: the name of the lock
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
|
|
|
* This declares a lock, that is defined with #G_LOCK_DEFINE in another
|
|
|
|
* module.
|
2011-09-25 07:32:41 +02:00
|
|
|
*/
|
2010-01-30 18:32:09 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* G_LOCK:
|
2011-10-03 05:43:17 +02:00
|
|
|
* @name: the name of the lock
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
|
|
|
* Works like g_mutex_lock(), but for a lock defined with
|
|
|
|
* #G_LOCK_DEFINE.
|
2011-09-25 07:32:41 +02:00
|
|
|
*/
|
2010-01-30 18:32:09 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* G_TRYLOCK:
|
2011-10-03 05:43:17 +02:00
|
|
|
* @name: the name of the lock
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
|
|
|
* Works like g_mutex_trylock(), but for a lock defined with
|
|
|
|
* #G_LOCK_DEFINE.
|
2012-10-31 02:56:00 +01:00
|
|
|
*
|
|
|
|
* Returns: %TRUE, if the lock could be locked.
|
2011-09-25 07:32:41 +02:00
|
|
|
*/
|
2010-01-30 18:32:09 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* G_UNLOCK:
|
2011-10-03 05:43:17 +02:00
|
|
|
* @name: the name of the lock
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
|
|
|
* Works like g_mutex_unlock(), but for a lock defined with
|
|
|
|
* #G_LOCK_DEFINE.
|
2011-09-25 07:32:41 +02:00
|
|
|
*/
|
2010-01-30 18:32:09 +01:00
|
|
|
|
2011-09-25 06:37:31 +02:00
|
|
|
/* GMutex Documentation {{{1 ------------------------------------------ */
|
2010-01-30 18:32:09 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GMutex:
|
|
|
|
*
|
|
|
|
* The #GMutex struct is an opaque data structure to represent a mutex
|
|
|
|
* (mutual exclusion). It can be used to protect data against shared
|
2014-02-01 03:56:33 +01:00
|
|
|
* access.
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
2014-02-01 03:56:33 +01:00
|
|
|
* Take for example the following function:
|
2014-02-01 21:11:49 +01:00
|
|
|
* |[<!-- language="C" -->
|
2010-01-30 18:32:09 +01:00
|
|
|
* int
|
|
|
|
* give_me_next_number (void)
|
|
|
|
* {
|
|
|
|
* static int current_number = 0;
|
|
|
|
*
|
2014-02-15 03:33:36 +01:00
|
|
|
* // now do a very complicated calculation to calculate the new
|
|
|
|
* // number, this might for example be a random number generator
|
2010-01-30 18:32:09 +01:00
|
|
|
* current_number = calc_next_number (current_number);
|
|
|
|
*
|
|
|
|
* return current_number;
|
|
|
|
* }
|
2014-02-01 03:56:33 +01:00
|
|
|
* ]|
|
2010-01-30 18:32:09 +01:00
|
|
|
* It is easy to see that this won't work in a multi-threaded
|
|
|
|
* application. There current_number must be protected against shared
|
2011-10-06 18:01:53 +02:00
|
|
|
* access. A #GMutex can be used as a solution to this problem:
|
2014-02-01 21:11:49 +01:00
|
|
|
* |[<!-- language="C" -->
|
2011-09-22 07:16:41 +02:00
|
|
|
* int
|
|
|
|
* give_me_next_number (void)
|
|
|
|
* {
|
2011-10-03 02:51:38 +02:00
|
|
|
* static GMutex mutex;
|
2011-09-22 07:16:41 +02:00
|
|
|
* static int current_number = 0;
|
|
|
|
* int ret_val;
|
|
|
|
*
|
2014-02-01 17:57:13 +01:00
|
|
|
* g_mutex_lock (&mutex);
|
2011-09-22 07:16:41 +02:00
|
|
|
* ret_val = current_number = calc_next_number (current_number);
|
2014-02-01 17:57:13 +01:00
|
|
|
* g_mutex_unlock (&mutex);
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
2011-09-22 07:16:41 +02:00
|
|
|
* return ret_val;
|
|
|
|
* }
|
2014-02-01 03:56:33 +01:00
|
|
|
* ]|
|
2011-10-06 18:01:53 +02:00
|
|
|
* Notice that the #GMutex is not initialised to any particular value.
|
|
|
|
* Its placement in static storage ensures that it will be initialised
|
|
|
|
* to all-zeros, which is appropriate.
|
|
|
|
*
|
|
|
|
* If a #GMutex is placed in other contexts (eg: embedded in a struct)
|
|
|
|
* then it must be explicitly initialised using g_mutex_init().
|
|
|
|
*
|
2014-02-01 18:19:04 +01:00
|
|
|
* A #GMutex should only be accessed via g_mutex_ functions.
|
2011-09-25 06:53:47 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/* GRecMutex Documentation {{{1 -------------------------------------- */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GRecMutex:
|
|
|
|
*
|
|
|
|
* The GRecMutex struct is an opaque data structure to represent a
|
|
|
|
* recursive mutex. It is similar to a #GMutex with the difference
|
|
|
|
* that it is possible to lock a GRecMutex multiple times in the same
|
|
|
|
* thread without deadlock. When doing so, care has to be taken to
|
|
|
|
* unlock the recursive mutex as often as it has been locked.
|
|
|
|
*
|
2011-10-03 05:37:20 +02:00
|
|
|
* If a #GRecMutex is allocated in static storage then it can be used
|
|
|
|
* without initialisation. Otherwise, you should call
|
|
|
|
* g_rec_mutex_init() on it and g_rec_mutex_clear() when done.
|
|
|
|
*
|
2011-09-25 06:53:47 +02:00
|
|
|
* A GRecMutex should only be accessed with the
|
2014-02-01 18:19:04 +01:00
|
|
|
* g_rec_mutex_ functions.
|
2011-09-25 06:53:47 +02:00
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
|
|
|
|
|
|
|
/* GRWLock Documentation {{{1 ---------------------------------------- */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GRWLock:
|
|
|
|
*
|
|
|
|
* The GRWLock struct is an opaque data structure to represent a
|
|
|
|
* reader-writer lock. It is similar to a #GMutex in that it allows
|
|
|
|
* multiple threads to coordinate access to a shared resource.
|
|
|
|
*
|
|
|
|
* The difference to a mutex is that a reader-writer lock discriminates
|
|
|
|
* between read-only ('reader') and full ('writer') access. While only
|
|
|
|
* one thread at a time is allowed write access (by holding the 'writer'
|
|
|
|
* lock via g_rw_lock_writer_lock()), multiple threads can gain
|
|
|
|
* simultaneous read-only access (by holding the 'reader' lock via
|
|
|
|
* g_rw_lock_reader_lock()).
|
|
|
|
*
|
2014-02-01 03:56:33 +01:00
|
|
|
* Here is an example for an array with access functions:
|
2014-02-01 21:11:49 +01:00
|
|
|
* |[<!-- language="C" -->
|
2011-10-03 02:51:38 +02:00
|
|
|
* GRWLock lock;
|
2011-09-25 06:53:47 +02:00
|
|
|
* GPtrArray *array;
|
|
|
|
*
|
|
|
|
* gpointer
|
|
|
|
* my_array_get (guint index)
|
|
|
|
* {
|
|
|
|
* gpointer retval = NULL;
|
|
|
|
*
|
|
|
|
* if (!array)
|
|
|
|
* return NULL;
|
|
|
|
*
|
2014-02-01 17:57:13 +01:00
|
|
|
* g_rw_lock_reader_lock (&lock);
|
2014-02-01 03:56:33 +01:00
|
|
|
* if (index < array->len)
|
2011-09-25 06:53:47 +02:00
|
|
|
* retval = g_ptr_array_index (array, index);
|
2014-02-01 17:57:13 +01:00
|
|
|
* g_rw_lock_reader_unlock (&lock);
|
2011-09-25 06:53:47 +02:00
|
|
|
*
|
|
|
|
* return retval;
|
|
|
|
* }
|
|
|
|
*
|
|
|
|
* void
|
|
|
|
* my_array_set (guint index, gpointer data)
|
|
|
|
* {
|
2014-02-01 03:56:33 +01:00
|
|
|
* g_rw_lock_writer_lock (&lock);
|
2011-09-25 06:53:47 +02:00
|
|
|
*
|
|
|
|
* if (!array)
|
2014-02-01 03:56:33 +01:00
|
|
|
* array = g_ptr_array_new ();
|
2011-09-25 06:53:47 +02:00
|
|
|
*
|
|
|
|
* if (index >= array->len)
|
|
|
|
* g_ptr_array_set_size (array, index+1);
|
|
|
|
* g_ptr_array_index (array, index) = data;
|
|
|
|
*
|
2014-02-01 03:56:33 +01:00
|
|
|
* g_rw_lock_writer_unlock (&lock);
|
2011-09-25 06:53:47 +02:00
|
|
|
* }
|
2014-02-01 03:56:33 +01:00
|
|
|
* ]|
|
|
|
|
* This example shows an array which can be accessed by many readers
|
|
|
|
* (the my_array_get() function) simultaneously, whereas the writers
|
|
|
|
* (the my_array_set() function) will only be allowed one at a time
|
|
|
|
* and only if no readers currently access the array. This is because
|
|
|
|
* of the potentially dangerous resizing of the array. Using these
|
|
|
|
* functions is fully multi-thread safe now.
|
2011-09-25 06:53:47 +02:00
|
|
|
*
|
2011-10-03 05:37:20 +02:00
|
|
|
* If a #GRWLock is allocated in static storage then it can be used
|
|
|
|
* without initialisation. Otherwise, you should call
|
|
|
|
* g_rw_lock_init() on it and g_rw_lock_clear() when done.
|
|
|
|
*
|
2014-02-01 03:56:33 +01:00
|
|
|
* A GRWLock should only be accessed with the g_rw_lock_ functions.
|
2011-09-25 06:53:47 +02:00
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
|
|
|
|
2011-09-25 06:37:31 +02:00
|
|
|
/* GCond Documentation {{{1 ------------------------------------------ */
|
2010-01-30 18:32:09 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GCond:
|
|
|
|
*
|
|
|
|
* The #GCond struct is an opaque data structure that represents a
|
|
|
|
* condition. Threads can block on a #GCond if they find a certain
|
|
|
|
* condition to be false. If other threads change the state of this
|
|
|
|
* condition they signal the #GCond, and that causes the waiting
|
|
|
|
* threads to be woken up.
|
|
|
|
*
|
2011-10-14 05:24:23 +02:00
|
|
|
* Consider the following example of a shared variable. One or more
|
|
|
|
* threads can wait for data to be published to the variable and when
|
|
|
|
* another thread publishes the data, it can signal one of the waiting
|
|
|
|
* threads to wake up to collect the data.
|
|
|
|
*
|
2014-02-01 03:56:33 +01:00
|
|
|
* Here is an example for using GCond to block a thread until a condition
|
|
|
|
* is satisfied:
|
2014-02-01 21:11:49 +01:00
|
|
|
* |[<!-- language="C" -->
|
2010-01-30 18:32:09 +01:00
|
|
|
* gpointer current_data = NULL;
|
2011-10-14 05:24:23 +02:00
|
|
|
* GMutex data_mutex;
|
|
|
|
* GCond data_cond;
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
|
|
|
* void
|
|
|
|
* push_data (gpointer data)
|
|
|
|
* {
|
2011-10-14 05:24:23 +02:00
|
|
|
* g_mutex_lock (&data_mutex);
|
2010-01-30 18:32:09 +01:00
|
|
|
* current_data = data;
|
2011-10-14 05:24:23 +02:00
|
|
|
* g_cond_signal (&data_cond);
|
|
|
|
* g_mutex_unlock (&data_mutex);
|
2010-01-30 18:32:09 +01:00
|
|
|
* }
|
|
|
|
*
|
|
|
|
* gpointer
|
|
|
|
* pop_data (void)
|
|
|
|
* {
|
|
|
|
* gpointer data;
|
|
|
|
*
|
2011-10-14 05:24:23 +02:00
|
|
|
* g_mutex_lock (&data_mutex);
|
2010-01-30 18:32:09 +01:00
|
|
|
* while (!current_data)
|
2011-10-14 05:24:23 +02:00
|
|
|
* g_cond_wait (&data_cond, &data_mutex);
|
2010-01-30 18:32:09 +01:00
|
|
|
* data = current_data;
|
|
|
|
* current_data = NULL;
|
2011-10-14 05:24:23 +02:00
|
|
|
* g_mutex_unlock (&data_mutex);
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
|
|
|
* return data;
|
|
|
|
* }
|
2014-02-01 03:56:33 +01:00
|
|
|
* ]|
|
2011-09-22 07:16:41 +02:00
|
|
|
* Whenever a thread calls pop_data() now, it will wait until
|
|
|
|
* current_data is non-%NULL, i.e. until some other thread
|
|
|
|
* has called push_data().
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
2011-10-14 05:24:23 +02:00
|
|
|
* The example shows that use of a condition variable must always be
|
|
|
|
* paired with a mutex. Without the use of a mutex, there would be a
|
2014-02-01 03:56:33 +01:00
|
|
|
* race between the check of @current_data by the while loop in
|
|
|
|
* pop_data() and waiting. Specifically, another thread could set
|
|
|
|
* @current_data after the check, and signal the cond (with nobody
|
|
|
|
* waiting on it) before the first thread goes to sleep. #GCond is
|
|
|
|
* specifically useful for its ability to release the mutex and go
|
|
|
|
* to sleep atomically.
|
2011-10-14 05:24:23 +02:00
|
|
|
*
|
|
|
|
* It is also important to use the g_cond_wait() and g_cond_wait_until()
|
|
|
|
* functions only inside a loop which checks for the condition to be
|
|
|
|
* true. See g_cond_wait() for an explanation of why the condition may
|
|
|
|
* not be true even after it returns.
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
2011-10-03 05:37:20 +02:00
|
|
|
* If a #GCond is allocated in static storage then it can be used
|
2014-02-01 03:56:33 +01:00
|
|
|
* without initialisation. Otherwise, you should call g_cond_init()
|
|
|
|
* on it and g_cond_clear() when done.
|
2011-10-03 05:37:20 +02:00
|
|
|
*
|
2014-02-01 03:56:33 +01:00
|
|
|
* A #GCond should only be accessed via the g_cond_ functions.
|
2011-09-25 06:53:47 +02:00
|
|
|
*/
|
|
|
|
|
2011-09-25 06:37:31 +02:00
|
|
|
/* GThread Documentation {{{1 ---------------------------------------- */
|
2011-09-25 07:32:41 +02:00
|
|
|
|
2010-01-30 18:32:09 +01:00
|
|
|
/**
|
|
|
|
* GThread:
|
|
|
|
*
|
2011-10-03 05:43:17 +02:00
|
|
|
* The #GThread struct represents a running thread. This struct
|
2011-10-15 17:37:03 +02:00
|
|
|
* is returned by g_thread_new() or g_thread_try_new(). You can
|
2014-02-03 23:10:45 +01:00
|
|
|
* obtain the #GThread struct representing the current thread by
|
2011-10-15 17:37:03 +02:00
|
|
|
* calling g_thread_self().
|
|
|
|
*
|
|
|
|
* GThread is refcounted, see g_thread_ref() and g_thread_unref().
|
|
|
|
* The thread represented by it holds a reference while it is running,
|
|
|
|
* and g_thread_join() consumes the reference that it is given, so
|
|
|
|
* it is normally not necessary to manage GThread references
|
|
|
|
* explicitly.
|
2011-10-06 18:01:53 +02:00
|
|
|
*
|
|
|
|
* The structure is opaque -- none of its fields may be directly
|
|
|
|
* accessed.
|
2011-09-25 07:32:41 +02:00
|
|
|
*/
|
2010-01-30 18:32:09 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GThreadFunc:
|
2011-09-25 07:32:41 +02:00
|
|
|
* @data: data passed to the thread
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
2011-10-15 17:37:03 +02:00
|
|
|
* Specifies the type of the @func functions passed to g_thread_new()
|
|
|
|
* or g_thread_try_new().
|
2011-10-03 05:43:17 +02:00
|
|
|
*
|
|
|
|
* Returns: the return value of the thread
|
2011-09-25 07:32:41 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* g_thread_supported:
|
|
|
|
*
|
|
|
|
* This macro returns %TRUE if the thread system is initialized,
|
|
|
|
* and %FALSE if it is not.
|
|
|
|
*
|
|
|
|
* For language bindings, g_thread_get_initialized() provides
|
|
|
|
* the same functionality as a function.
|
|
|
|
*
|
|
|
|
* Returns: %TRUE, if the thread system is initialized
|
|
|
|
*/
|
2010-01-30 18:32:09 +01:00
|
|
|
|
2011-09-25 06:37:31 +02:00
|
|
|
/* GThreadError {{{1 ------------------------------------------------------- */
|
2010-01-30 18:32:09 +01:00
|
|
|
/**
|
2011-09-25 06:37:31 +02:00
|
|
|
* GThreadError:
|
|
|
|
* @G_THREAD_ERROR_AGAIN: a thread couldn't be created due to resource
|
|
|
|
* shortage. Try again later.
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
2011-09-25 06:37:31 +02:00
|
|
|
* Possible errors of thread related functions.
|
2010-01-30 18:32:09 +01:00
|
|
|
**/
|
|
|
|
|
2011-09-25 06:37:31 +02:00
|
|
|
/**
|
|
|
|
* G_THREAD_ERROR:
|
|
|
|
*
|
|
|
|
* The error domain of the GLib thread subsystem.
|
|
|
|
**/
|
2012-08-28 19:15:56 +02:00
|
|
|
G_DEFINE_QUARK (g_thread_error, g_thread_error)
|
2011-09-25 06:53:47 +02:00
|
|
|
|
2010-01-30 18:32:09 +01:00
|
|
|
/* Local Data {{{1 -------------------------------------------------------- */
|
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-10-13 03:47:25 +02:00
|
|
|
static GMutex g_once_mutex;
|
2011-10-03 02:51:38 +02:00
|
|
|
static GCond g_once_cond;
|
2011-10-03 01:10:16 +02:00
|
|
|
static GSList *g_once_init_list = NULL;
|
2001-02-13 16:57:44 +01:00
|
|
|
|
2011-09-30 20:22:04 +02:00
|
|
|
static void g_thread_cleanup (gpointer data);
|
|
|
|
static GPrivate g_thread_specific_private = G_PRIVATE_INIT (g_thread_cleanup);
|
2011-10-02 07:21:46 +02:00
|
|
|
|
2011-10-02 07:29:08 +02:00
|
|
|
G_LOCK_DEFINE_STATIC (g_thread_new);
|
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
|
|
|
|
2010-01-30 18:32:09 +01:00
|
|
|
/* GOnce {{{1 ------------------------------------------------------------- */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* GOnce:
|
|
|
|
* @status: the status of the #GOnce
|
|
|
|
* @retval: the value returned by the call to the function, if @status
|
|
|
|
* is %G_ONCE_STATUS_READY
|
|
|
|
*
|
|
|
|
* A #GOnce struct controls a one-time initialization function. Any
|
|
|
|
* one-time initialization function must have its own unique #GOnce
|
|
|
|
* struct.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
2011-09-25 07:32:41 +02:00
|
|
|
*/
|
2010-01-30 18:32:09 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* G_ONCE_INIT:
|
|
|
|
*
|
|
|
|
* A #GOnce must be initialized with this macro before it can be used.
|
|
|
|
*
|
2014-02-01 21:11:49 +01:00
|
|
|
* |[<!-- language="C" -->
|
2010-01-30 18:32:09 +01:00
|
|
|
* GOnce my_once = G_ONCE_INIT;
|
2011-09-25 07:32:41 +02:00
|
|
|
* ]|
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
|
|
|
* Since: 2.4
|
2011-09-25 07:32:41 +02:00
|
|
|
*/
|
2010-01-30 18:32:09 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* GOnceStatus:
|
|
|
|
* @G_ONCE_STATUS_NOTCALLED: the function has not been called yet.
|
|
|
|
* @G_ONCE_STATUS_PROGRESS: the function call is currently in progress.
|
|
|
|
* @G_ONCE_STATUS_READY: the function has been called.
|
|
|
|
*
|
|
|
|
* The possible statuses of a one-time initialization function
|
|
|
|
* controlled by a #GOnce struct.
|
|
|
|
*
|
|
|
|
* Since: 2.4
|
2011-09-25 07:32:41 +02:00
|
|
|
*/
|
2010-01-30 18:32:09 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* g_once:
|
|
|
|
* @once: a #GOnce structure
|
|
|
|
* @func: the #GThreadFunc function associated to @once. This function
|
|
|
|
* is called only once, regardless of the number of times it and
|
|
|
|
* its associated #GOnce struct are passed to g_once().
|
|
|
|
* @arg: data to be passed to @func
|
|
|
|
*
|
|
|
|
* The first call to this routine by a process with a given #GOnce
|
|
|
|
* struct calls @func with the given argument. Thereafter, subsequent
|
|
|
|
* calls to g_once() with the same #GOnce struct do not call @func
|
|
|
|
* again, but return the stored result of the first call. On return
|
|
|
|
* from g_once(), the status of @once will be %G_ONCE_STATUS_READY.
|
|
|
|
*
|
|
|
|
* For example, a mutex or a thread-specific data key must be created
|
|
|
|
* exactly once. In a threaded environment, calling g_once() ensures
|
|
|
|
* that the initialization is serialized across multiple threads.
|
|
|
|
*
|
2011-09-25 07:32:41 +02:00
|
|
|
* Calling g_once() recursively on the same #GOnce struct in
|
|
|
|
* @func will lead to a deadlock.
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
2014-02-01 21:11:49 +01:00
|
|
|
* |[<!-- language="C" -->
|
2010-01-31 03:55:03 +01:00
|
|
|
* gpointer
|
|
|
|
* get_debug_flags (void)
|
|
|
|
* {
|
2010-01-30 18:32:09 +01:00
|
|
|
* static GOnce my_once = G_ONCE_INIT;
|
2010-01-31 03:55:03 +01:00
|
|
|
*
|
2010-01-30 18:32:09 +01:00
|
|
|
* g_once (&my_once, parse_debug_flags, NULL);
|
2010-01-31 03:55:03 +01:00
|
|
|
*
|
2010-01-30 18:32:09 +01:00
|
|
|
* return my_once.retval;
|
|
|
|
* }
|
2011-09-25 07:32:41 +02:00
|
|
|
* ]|
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
|
|
|
* Since: 2.4
|
2011-09-25 07:32:41 +02:00
|
|
|
*/
|
2006-05-11 02:10:29 +02:00
|
|
|
gpointer
|
|
|
|
g_once_impl (GOnce *once,
|
|
|
|
GThreadFunc func,
|
2003-07-09 01:43:48 +02:00
|
|
|
gpointer arg)
|
|
|
|
{
|
2011-09-17 23:56:33 +02:00
|
|
|
g_mutex_lock (&g_once_mutex);
|
2003-07-09 01:43:48 +02:00
|
|
|
|
|
|
|
while (once->status == G_ONCE_STATUS_PROGRESS)
|
2011-09-18 00:05:24 +02:00
|
|
|
g_cond_wait (&g_once_cond, &g_once_mutex);
|
2006-05-11 02:10:29 +02:00
|
|
|
|
2003-07-09 01:43:48 +02:00
|
|
|
if (once->status != G_ONCE_STATUS_READY)
|
|
|
|
{
|
|
|
|
once->status = G_ONCE_STATUS_PROGRESS;
|
2011-09-17 23:56:33 +02:00
|
|
|
g_mutex_unlock (&g_once_mutex);
|
2006-05-11 02:10:29 +02:00
|
|
|
|
2003-07-09 01:43:48 +02:00
|
|
|
once->retval = func (arg);
|
|
|
|
|
2011-09-17 23:56:33 +02:00
|
|
|
g_mutex_lock (&g_once_mutex);
|
2003-07-09 01:43:48 +02:00
|
|
|
once->status = G_ONCE_STATUS_READY;
|
2011-09-18 00:05:24 +02:00
|
|
|
g_cond_broadcast (&g_once_cond);
|
2003-07-09 01:43:48 +02:00
|
|
|
}
|
2006-05-11 02:10:29 +02:00
|
|
|
|
2011-09-17 23:56:33 +02:00
|
|
|
g_mutex_unlock (&g_once_mutex);
|
2006-05-11 02:10:29 +02:00
|
|
|
|
2003-07-09 01:43:48 +02:00
|
|
|
return once->retval;
|
|
|
|
}
|
|
|
|
|
2010-01-30 18:32:09 +01:00
|
|
|
/**
|
|
|
|
* g_once_init_enter:
|
2013-12-06 13:23:09 +01:00
|
|
|
* @location: (not nullable): location of a static initializable variable
|
|
|
|
* containing 0
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
|
|
|
* Function to be called when starting a critical initialization
|
2011-10-15 22:50:23 +02:00
|
|
|
* section. The argument @location must point to a static
|
2010-01-30 18:32:09 +01:00
|
|
|
* 0-initialized variable that will be set to a value other than 0 at
|
|
|
|
* the end of the initialization section. In combination with
|
|
|
|
* g_once_init_leave() and the unique address @value_location, it can
|
|
|
|
* be ensured that an initialization section will be executed only once
|
|
|
|
* during a program's life time, and that concurrent threads are
|
|
|
|
* blocked until initialization completed. To be used in constructs
|
|
|
|
* like this:
|
|
|
|
*
|
2014-02-01 21:11:49 +01:00
|
|
|
* |[<!-- language="C" -->
|
2010-01-30 18:32:09 +01:00
|
|
|
* static gsize initialization_value = 0;
|
|
|
|
*
|
2014-02-01 17:57:13 +01:00
|
|
|
* if (g_once_init_enter (&initialization_value))
|
2010-01-30 18:32:09 +01:00
|
|
|
* {
|
2014-02-15 03:33:36 +01:00
|
|
|
* gsize setup_value = 42; // initialization code here
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
2014-02-01 17:57:13 +01:00
|
|
|
* g_once_init_leave (&initialization_value, setup_value);
|
2010-01-30 18:32:09 +01:00
|
|
|
* }
|
|
|
|
*
|
2014-02-15 03:33:36 +01:00
|
|
|
* // use initialization_value here
|
2011-09-25 07:32:41 +02:00
|
|
|
* ]|
|
|
|
|
*
|
|
|
|
* Returns: %TRUE if the initialization section should be entered,
|
|
|
|
* %FALSE and blocks otherwise
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
|
|
|
* Since: 2.14
|
2011-09-25 07:32:41 +02:00
|
|
|
*/
|
2007-07-10 12:30:36 +02:00
|
|
|
gboolean
|
2011-10-15 22:50:23 +02:00
|
|
|
(g_once_init_enter) (volatile void *location)
|
2007-07-10 12:30:36 +02:00
|
|
|
{
|
2011-10-15 22:50:23 +02:00
|
|
|
volatile gsize *value_location = location;
|
2007-08-14 02:05:52 +02:00
|
|
|
gboolean need_init = FALSE;
|
2011-09-17 23:56:33 +02:00
|
|
|
g_mutex_lock (&g_once_mutex);
|
2011-05-29 00:42:09 +02:00
|
|
|
if (g_atomic_pointer_get (value_location) == NULL)
|
2007-07-10 12:30:36 +02:00
|
|
|
{
|
2007-08-14 02:05:52 +02:00
|
|
|
if (!g_slist_find (g_once_init_list, (void*) value_location))
|
|
|
|
{
|
|
|
|
need_init = TRUE;
|
|
|
|
g_once_init_list = g_slist_prepend (g_once_init_list, (void*) value_location);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
do
|
2011-09-18 00:05:24 +02:00
|
|
|
g_cond_wait (&g_once_cond, &g_once_mutex);
|
2007-08-14 02:05:52 +02:00
|
|
|
while (g_slist_find (g_once_init_list, (void*) value_location));
|
2007-07-10 12:30:36 +02:00
|
|
|
}
|
2011-09-17 23:56:33 +02:00
|
|
|
g_mutex_unlock (&g_once_mutex);
|
2007-07-10 12:30:36 +02:00
|
|
|
return need_init;
|
|
|
|
}
|
|
|
|
|
2010-01-30 18:32:09 +01:00
|
|
|
/**
|
|
|
|
* g_once_init_leave:
|
2013-12-06 13:23:09 +01:00
|
|
|
* @location: (not nullable): location of a static initializable variable
|
|
|
|
* containing 0
|
2011-10-03 20:40:00 +02:00
|
|
|
* @result: new non-0 value for *@value_location
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
|
|
|
* Counterpart to g_once_init_enter(). Expects a location of a static
|
|
|
|
* 0-initialized initialization variable, and an initialization value
|
|
|
|
* other than 0. Sets the variable to the initialization value, and
|
|
|
|
* releases concurrent threads blocking in g_once_init_enter() on this
|
|
|
|
* initialization variable.
|
|
|
|
*
|
|
|
|
* Since: 2.14
|
2011-09-25 07:32:41 +02:00
|
|
|
*/
|
2007-07-10 12:30:36 +02:00
|
|
|
void
|
2011-10-15 22:50:23 +02:00
|
|
|
(g_once_init_leave) (volatile void *location,
|
2011-10-03 20:40:00 +02:00
|
|
|
gsize result)
|
2007-07-10 12:30:36 +02:00
|
|
|
{
|
2011-10-15 22:50:23 +02:00
|
|
|
volatile gsize *value_location = location;
|
2011-10-03 20:40:00 +02:00
|
|
|
|
2011-05-29 00:42:09 +02:00
|
|
|
g_return_if_fail (g_atomic_pointer_get (value_location) == NULL);
|
2011-10-03 20:40:00 +02:00
|
|
|
g_return_if_fail (result != 0);
|
2007-07-10 12:30:36 +02:00
|
|
|
g_return_if_fail (g_once_init_list != NULL);
|
|
|
|
|
2011-10-03 20:40:00 +02:00
|
|
|
g_atomic_pointer_set (value_location, result);
|
2011-09-17 23:56:33 +02:00
|
|
|
g_mutex_lock (&g_once_mutex);
|
2007-07-10 12:30:36 +02:00
|
|
|
g_once_init_list = g_slist_remove (g_once_init_list, (void*) value_location);
|
2011-09-18 00:05:24 +02:00
|
|
|
g_cond_broadcast (&g_once_cond);
|
2011-09-17 23:56:33 +02:00
|
|
|
g_mutex_unlock (&g_once_mutex);
|
2007-07-10 12:30:36 +02:00
|
|
|
}
|
|
|
|
|
2011-09-25 07:51:33 +02:00
|
|
|
/* GThread {{{1 -------------------------------------------------------- */
|
2011-09-25 07:32:41 +02:00
|
|
|
|
2011-10-15 15:48:22 +02:00
|
|
|
/**
|
|
|
|
* g_thread_ref:
|
|
|
|
* @thread: a #GThread
|
|
|
|
*
|
|
|
|
* Increase the reference count on @thread.
|
|
|
|
*
|
|
|
|
* Returns: a new reference to @thread
|
2011-10-15 17:37:03 +02:00
|
|
|
*
|
2011-10-15 15:48:22 +02:00
|
|
|
* Since: 2.32
|
2011-10-15 17:37:03 +02:00
|
|
|
*/
|
2011-10-13 06:29:04 +02:00
|
|
|
GThread *
|
|
|
|
g_thread_ref (GThread *thread)
|
|
|
|
{
|
|
|
|
GRealThread *real = (GRealThread *) thread;
|
|
|
|
|
|
|
|
g_atomic_int_inc (&real->ref_count);
|
|
|
|
|
|
|
|
return thread;
|
|
|
|
}
|
|
|
|
|
2011-10-15 15:48:22 +02:00
|
|
|
/**
|
|
|
|
* g_thread_unref:
|
|
|
|
* @thread: a #GThread
|
|
|
|
*
|
|
|
|
* Decrease the reference count on @thread, possibly freeing all
|
|
|
|
* resources associated with it.
|
|
|
|
*
|
2011-10-15 17:37:03 +02:00
|
|
|
* Note that each thread holds a reference to its #GThread while
|
|
|
|
* it is running, so it is safe to drop your own reference to it
|
|
|
|
* if you don't need it anymore.
|
|
|
|
*
|
2011-10-15 15:48:22 +02:00
|
|
|
* Since: 2.32
|
2011-10-15 17:37:03 +02:00
|
|
|
*/
|
2011-10-13 06:29:04 +02:00
|
|
|
void
|
2011-10-13 06:18:17 +02:00
|
|
|
g_thread_unref (GThread *thread)
|
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-10-13 06:18:17 +02:00
|
|
|
GRealThread *real = (GRealThread *) thread;
|
2011-05-24 17:23:02 +02:00
|
|
|
|
2011-10-13 06:18:17 +02:00
|
|
|
if (g_atomic_int_dec_and_test (&real->ref_count))
|
|
|
|
{
|
|
|
|
if (real->ours)
|
|
|
|
g_system_thread_free (real);
|
|
|
|
else
|
|
|
|
g_slice_free (GRealThread, real);
|
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-10-13 06:18:17 +02:00
|
|
|
static void
|
|
|
|
g_thread_cleanup (gpointer data)
|
|
|
|
{
|
|
|
|
g_thread_unref (data);
|
|
|
|
}
|
|
|
|
|
2011-10-13 03:44:07 +02:00
|
|
|
gpointer
|
|
|
|
g_thread_proxy (gpointer data)
|
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
|
|
|
{
|
|
|
|
GRealThread* thread = data;
|
|
|
|
|
|
|
|
g_assert (data);
|
|
|
|
|
2000-11-28 13:56:57 +01:00
|
|
|
/* This has to happen before G_LOCK, as that might call g_thread_self */
|
2011-09-18 07:10:07 +02:00
|
|
|
g_private_set (&g_thread_specific_private, data);
|
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-10-13 04:29:13 +02:00
|
|
|
/* The lock makes sure that g_thread_new_internal() has a chance to
|
|
|
|
* setup 'func' and 'data' before we make the call.
|
2011-09-25 06:53:47 +02:00
|
|
|
*/
|
2011-10-02 07:29:08 +02:00
|
|
|
G_LOCK (g_thread_new);
|
|
|
|
G_UNLOCK (g_thread_new);
|
2006-05-11 02:10:29 +02:00
|
|
|
|
2015-12-23 17:28:50 +01:00
|
|
|
TRACE (GLIB_THREAD_SPAWNED (thread->thread.func, thread->thread.data,
|
|
|
|
thread->name));
|
|
|
|
|
2011-11-15 04:18:13 +01:00
|
|
|
if (thread->name)
|
|
|
|
{
|
|
|
|
g_system_thread_set_name (thread->name);
|
|
|
|
g_free (thread->name);
|
|
|
|
thread->name = NULL;
|
|
|
|
}
|
|
|
|
|
2001-05-09 14:51:21 +02:00
|
|
|
thread->retval = thread->thread.func (thread->thread.data);
|
2001-05-08 10:23:18 +02:00
|
|
|
|
|
|
|
return NULL;
|
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-09-19 03:17:33 +02:00
|
|
|
/**
|
2011-10-02 16:01:57 +02:00
|
|
|
* g_thread_new:
|
2016-10-29 03:29:02 +02:00
|
|
|
* @name: (nullable): an (optional) name for the new thread
|
2011-09-19 03:17:33 +02:00
|
|
|
* @func: a function to execute in the new thread
|
|
|
|
* @data: an argument to supply to the new thread
|
|
|
|
*
|
2011-10-06 18:01:53 +02:00
|
|
|
* This function creates a new thread. The new thread starts by invoking
|
|
|
|
* @func with the argument data. The thread will run until @func returns
|
2011-10-15 17:37:03 +02:00
|
|
|
* or until g_thread_exit() is called from the new thread. The return value
|
|
|
|
* of @func becomes the return value of the thread, which can be obtained
|
|
|
|
* with g_thread_join().
|
2011-09-19 03:17:33 +02:00
|
|
|
*
|
2011-10-15 17:37:03 +02:00
|
|
|
* The @name can be useful for discriminating threads in a debugger.
|
2013-08-19 00:13:02 +02:00
|
|
|
* It is not used for other purposes and does not have to be unique.
|
2011-10-15 17:37:03 +02:00
|
|
|
* Some systems restrict the length of @name to 16 bytes.
|
2011-10-02 16:01:57 +02:00
|
|
|
*
|
2011-10-15 17:37:03 +02:00
|
|
|
* If the thread can not be created the program aborts. See
|
2011-10-15 15:48:10 +02:00
|
|
|
* g_thread_try_new() if you want to attempt to deal with failures.
|
2011-09-19 03:17:33 +02:00
|
|
|
*
|
2014-12-19 18:05:36 +01:00
|
|
|
* If you are using threads to offload (potentially many) short-lived tasks,
|
|
|
|
* #GThreadPool may be more appropriate than manually spawning and tracking
|
|
|
|
* multiple #GThreads.
|
|
|
|
*
|
2011-10-15 17:37:03 +02:00
|
|
|
* To free the struct returned by this function, use g_thread_unref().
|
|
|
|
* Note that g_thread_join() implicitly unrefs the #GThread as well.
|
|
|
|
*
|
2011-10-13 07:00:57 +02:00
|
|
|
* Returns: the new #GThread
|
|
|
|
*
|
|
|
|
* Since: 2.32
|
|
|
|
*/
|
|
|
|
GThread *
|
|
|
|
g_thread_new (const gchar *name,
|
|
|
|
GThreadFunc func,
|
|
|
|
gpointer data)
|
|
|
|
{
|
|
|
|
GError *error = NULL;
|
|
|
|
GThread *thread;
|
|
|
|
|
|
|
|
thread = g_thread_new_internal (name, g_thread_proxy, func, data, 0, &error);
|
|
|
|
|
|
|
|
if G_UNLIKELY (thread == NULL)
|
|
|
|
g_error ("creating thread '%s': %s", name ? name : "", error->message);
|
|
|
|
|
|
|
|
return thread;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2011-10-15 15:48:10 +02:00
|
|
|
* g_thread_try_new:
|
2016-10-29 03:29:02 +02:00
|
|
|
* @name: (nullable): an (optional) name for the new thread
|
2011-10-13 07:00:57 +02:00
|
|
|
* @func: a function to execute in the new thread
|
|
|
|
* @data: an argument to supply to the new thread
|
2011-10-15 05:00:17 +02:00
|
|
|
* @error: return location for error, or %NULL
|
2011-10-13 07:00:57 +02:00
|
|
|
*
|
2011-10-15 05:00:17 +02:00
|
|
|
* This function is the same as g_thread_new() except that
|
|
|
|
* it allows for the possibility of failure.
|
2011-10-13 07:00:57 +02:00
|
|
|
*
|
2011-10-15 05:00:17 +02:00
|
|
|
* If a thread can not be created (due to resource limits),
|
|
|
|
* @error is set and %NULL is returned.
|
2011-10-13 06:43:33 +02:00
|
|
|
*
|
2011-10-03 05:43:17 +02:00
|
|
|
* Returns: the new #GThread, or %NULL if an error occurred
|
2011-10-02 16:01:57 +02:00
|
|
|
*
|
|
|
|
* Since: 2.32
|
2011-09-19 03:17:33 +02:00
|
|
|
*/
|
2011-09-19 06:45:19 +02:00
|
|
|
GThread *
|
2011-10-15 15:48:10 +02:00
|
|
|
g_thread_try_new (const gchar *name,
|
|
|
|
GThreadFunc func,
|
|
|
|
gpointer data,
|
|
|
|
GError **error)
|
2011-09-19 06:45:19 +02:00
|
|
|
{
|
2011-10-13 06:43:33 +02:00
|
|
|
return g_thread_new_internal (name, g_thread_proxy, func, data, 0, error);
|
2011-09-19 06:45:19 +02:00
|
|
|
}
|
2011-09-19 03:17:33 +02:00
|
|
|
|
2011-10-02 15:51:13 +02:00
|
|
|
GThread *
|
2011-10-12 22:50:43 +02:00
|
|
|
g_thread_new_internal (const gchar *name,
|
2011-10-13 03:44:07 +02:00
|
|
|
GThreadFunc proxy,
|
2011-10-12 22:50:43 +02:00
|
|
|
GThreadFunc func,
|
|
|
|
gpointer data,
|
|
|
|
gsize stack_size,
|
|
|
|
GError **error)
|
2011-10-02 15:51:13 +02:00
|
|
|
{
|
2011-10-13 04:35:35 +02:00
|
|
|
GRealThread *thread;
|
2011-10-03 05:53:56 +02:00
|
|
|
|
|
|
|
g_return_val_if_fail (func != NULL, NULL);
|
2006-05-11 02:10:29 +02:00
|
|
|
|
2011-10-13 04:29:13 +02:00
|
|
|
G_LOCK (g_thread_new);
|
2011-10-13 06:01:28 +02:00
|
|
|
thread = g_system_thread_new (proxy, stack_size, error);
|
2011-10-13 04:35:35 +02:00
|
|
|
if (thread)
|
2000-09-01 15:03:23 +02:00
|
|
|
{
|
2011-10-13 06:43:33 +02:00
|
|
|
thread->ref_count = 2;
|
2011-10-13 05:16:49 +02:00
|
|
|
thread->ours = TRUE;
|
2011-10-13 06:43:33 +02:00
|
|
|
thread->thread.joinable = TRUE;
|
2011-10-13 04:35:35 +02:00
|
|
|
thread->thread.func = func;
|
|
|
|
thread->thread.data = data;
|
2011-11-15 04:18:13 +01:00
|
|
|
thread->name = g_strdup (name);
|
2000-09-01 15:03:23 +02:00
|
|
|
}
|
2011-10-13 04:35:35 +02:00
|
|
|
G_UNLOCK (g_thread_new);
|
2000-09-01 15:03:23 +02:00
|
|
|
|
2011-10-13 04:35:35 +02:00
|
|
|
return (GThread*) thread;
|
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
|
|
|
}
|
|
|
|
|
2010-01-30 18:32:09 +01:00
|
|
|
/**
|
|
|
|
* g_thread_exit:
|
2011-09-25 07:32:41 +02:00
|
|
|
* @retval: the return value of this thread
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
2011-10-03 05:43:17 +02:00
|
|
|
* Terminates the current thread.
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
2011-10-13 06:43:33 +02:00
|
|
|
* If another thread is waiting for us using g_thread_join() then the
|
|
|
|
* waiting thread will be woken up and get @retval as the return value
|
|
|
|
* of g_thread_join().
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
2014-02-01 06:26:38 +01:00
|
|
|
* Calling g_thread_exit() with a parameter @retval is equivalent to
|
2011-10-03 05:43:17 +02:00
|
|
|
* returning @retval from the function @func, as given to g_thread_new().
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
2014-01-31 20:56:10 +01:00
|
|
|
* You must only call g_thread_exit() from a thread that you created
|
2014-02-01 06:26:38 +01:00
|
|
|
* yourself with g_thread_new() or related APIs. You must not call
|
2014-01-31 20:56:10 +01:00
|
|
|
* this function from a thread created with another threading library
|
|
|
|
* or or from within a #GThreadPool.
|
2011-09-25 07:32:41 +02:00
|
|
|
*/
|
2001-05-08 10:23:18 +02:00
|
|
|
void
|
|
|
|
g_thread_exit (gpointer retval)
|
|
|
|
{
|
|
|
|
GRealThread* real = (GRealThread*) g_thread_self ();
|
2011-10-15 15:48:42 +02:00
|
|
|
|
|
|
|
if G_UNLIKELY (!real->ours)
|
|
|
|
g_error ("attempt to g_thread_exit() a thread not created by GLib");
|
|
|
|
|
2001-05-08 10:23:18 +02:00
|
|
|
real->retval = retval;
|
2011-09-19 05:18:17 +02:00
|
|
|
|
|
|
|
g_system_thread_exit ();
|
2001-05-08 10:23:18 +02:00
|
|
|
}
|
|
|
|
|
2010-01-30 18:32:09 +01:00
|
|
|
/**
|
|
|
|
* g_thread_join:
|
2011-10-13 06:43:33 +02:00
|
|
|
* @thread: a #GThread
|
2011-10-03 05:43:17 +02:00
|
|
|
*
|
|
|
|
* Waits until @thread finishes, i.e. the function @func, as
|
|
|
|
* given to g_thread_new(), returns or g_thread_exit() is called.
|
|
|
|
* If @thread has already terminated, then g_thread_join()
|
2011-10-13 06:43:33 +02:00
|
|
|
* returns immediately.
|
2010-01-30 18:32:09 +01:00
|
|
|
*
|
2011-10-13 06:43:33 +02:00
|
|
|
* Any thread can wait for any other thread by calling g_thread_join(),
|
|
|
|
* not just its 'creator'. Calling g_thread_join() from multiple threads
|
|
|
|
* for the same @thread leads to undefined behaviour.
|
2011-10-03 05:43:17 +02:00
|
|
|
*
|
|
|
|
* The value returned by @func or given to g_thread_exit() is
|
|
|
|
* returned by this function.
|
|
|
|
*
|
2011-10-15 17:37:03 +02:00
|
|
|
* g_thread_join() consumes the reference to the passed-in @thread.
|
|
|
|
* This will usually cause the #GThread struct and associated resources
|
|
|
|
* to be freed. Use g_thread_ref() to obtain an extra reference if you
|
|
|
|
* want to keep the GThread alive beyond the g_thread_join() call.
|
2011-09-25 07:32:41 +02:00
|
|
|
*
|
|
|
|
* Returns: the return value of the thread
|
|
|
|
*/
|
2001-05-08 10:23:18 +02:00
|
|
|
gpointer
|
2011-10-02 15:51:13 +02:00
|
|
|
g_thread_join (GThread *thread)
|
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-10-02 15:51:13 +02:00
|
|
|
GRealThread *real = (GRealThread*) thread;
|
2001-05-08 10:23:18 +02:00
|
|
|
gpointer retval;
|
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
|
|
|
|
2001-05-08 10:23:18 +02:00
|
|
|
g_return_val_if_fail (thread, NULL);
|
2011-10-15 15:48:42 +02:00
|
|
|
g_return_val_if_fail (real->ours, NULL);
|
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-10-13 04:15:46 +02:00
|
|
|
g_system_thread_wait (real);
|
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
|
|
|
|
2001-05-08 10:23:18 +02:00
|
|
|
retval = real->retval;
|
|
|
|
|
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
|
|
|
/* Just to make sure, this isn't used any more */
|
|
|
|
thread->joinable = 0;
|
|
|
|
|
2011-10-13 06:18:17 +02:00
|
|
|
g_thread_unref (thread);
|
2001-05-08 10:23:18 +02:00
|
|
|
|
|
|
|
return retval;
|
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
|
|
|
}
|
|
|
|
|
2010-01-30 18:32:09 +01:00
|
|
|
/**
|
|
|
|
* g_thread_self:
|
|
|
|
*
|
2015-01-25 18:09:24 +01:00
|
|
|
* This function returns the #GThread corresponding to the
|
2011-10-15 05:00:17 +02:00
|
|
|
* current thread. Note that this function does not increase
|
2011-10-15 17:37:03 +02:00
|
|
|
* the reference count of the returned struct.
|
2011-09-25 07:32:41 +02:00
|
|
|
*
|
2011-10-15 17:37:03 +02:00
|
|
|
* This function will return a #GThread even for threads that
|
|
|
|
* were not created by GLib (i.e. those created by other threading
|
|
|
|
* APIs). This may be useful for thread identification purposes
|
|
|
|
* (i.e. comparisons) but you must not use GLib functions (such
|
|
|
|
* as g_thread_join()) on these threads.
|
2011-10-15 15:48:42 +02:00
|
|
|
*
|
2011-10-03 05:43:17 +02:00
|
|
|
* Returns: the #GThread representing the current thread
|
2011-09-25 07:32:41 +02:00
|
|
|
*/
|
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
|
|
|
GThread*
|
2001-02-13 16:57:44 +01:00
|
|
|
g_thread_self (void)
|
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-09-18 07:10:07 +02:00
|
|
|
GRealThread* thread = g_private_get (&g_thread_specific_private);
|
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
|
|
|
|
|
|
|
if (!thread)
|
2006-05-11 02:10:29 +02:00
|
|
|
{
|
2011-09-25 07:51:33 +02:00
|
|
|
/* If no thread data is available, provide and set one.
|
|
|
|
* This can happen for the main thread and for threads
|
|
|
|
* that are not created by GLib.
|
|
|
|
*/
|
2011-10-13 05:16:49 +02:00
|
|
|
thread = g_slice_new0 (GRealThread);
|
2011-10-13 06:18:17 +02:00
|
|
|
thread->ref_count = 1;
|
|
|
|
|
2011-09-18 07:10:07 +02:00
|
|
|
g_private_set (&g_thread_specific_private, thread);
|
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
|
|
|
}
|
2006-05-11 02:10:29 +02:00
|
|
|
|
2011-10-13 05:16:49 +02:00
|
|
|
return (GThread*) thread;
|
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
|
|
|
}
|
|
|
|
|
2012-12-17 16:47:53 +01:00
|
|
|
/**
|
|
|
|
* g_get_num_processors:
|
|
|
|
*
|
|
|
|
* Determine the approximate number of threads that the system will
|
|
|
|
* schedule simultaneously for this process. This is intended to be
|
|
|
|
* used as a parameter to g_thread_pool_new() for CPU bound tasks and
|
|
|
|
* similar cases.
|
|
|
|
*
|
|
|
|
* Returns: Number of schedulable threads, always greater than 0
|
|
|
|
*
|
|
|
|
* Since: 2.36
|
|
|
|
*/
|
|
|
|
guint
|
|
|
|
g_get_num_processors (void)
|
|
|
|
{
|
|
|
|
#ifdef G_OS_WIN32
|
2015-04-27 16:48:10 +02:00
|
|
|
unsigned int count;
|
|
|
|
SYSTEM_INFO sysinfo;
|
2012-12-17 16:47:53 +01:00
|
|
|
DWORD_PTR process_cpus;
|
|
|
|
DWORD_PTR system_cpus;
|
|
|
|
|
2015-04-27 16:48:10 +02:00
|
|
|
/* This *never* fails, use it as fallback */
|
|
|
|
GetNativeSystemInfo (&sysinfo);
|
|
|
|
count = (int) sysinfo.dwNumberOfProcessors;
|
|
|
|
|
2012-12-17 16:47:53 +01:00
|
|
|
if (GetProcessAffinityMask (GetCurrentProcess (),
|
|
|
|
&process_cpus, &system_cpus))
|
|
|
|
{
|
2015-04-27 16:48:10 +02:00
|
|
|
unsigned int af_count;
|
2012-12-17 16:47:53 +01:00
|
|
|
|
2015-04-27 16:48:10 +02:00
|
|
|
for (af_count = 0; process_cpus != 0; process_cpus >>= 1)
|
2012-12-17 16:47:53 +01:00
|
|
|
if (process_cpus & 1)
|
2015-04-27 16:48:10 +02:00
|
|
|
af_count++;
|
2012-12-17 16:47:53 +01:00
|
|
|
|
2015-04-27 16:48:10 +02:00
|
|
|
/* Prefer affinity-based result, if available */
|
|
|
|
if (af_count > 0)
|
|
|
|
count = af_count;
|
2012-12-17 16:47:53 +01:00
|
|
|
}
|
2015-04-27 16:48:10 +02:00
|
|
|
|
|
|
|
if (count > 0)
|
|
|
|
return count;
|
Replace #ifdef HAVE_UNISTD_H checks with #ifdef G_OS_UNIX
In Windows development environments that have it, <unistd.h> is mostly
just a wrapper around several other native headers (in particular,
<io.h>, which contains read(), close(), etc, and <process.h>, which
contains getpid()). But given that some Windows dev environments don't
have <unistd.h>, everything that uses those functions on Windows
already needed to include the correct Windows header as well, and so
there is never any point to including <unistd.h> on Windows.
Also, remove some <unistd.h> includes (and a few others) that were
unnecessary even on unix.
https://bugzilla.gnome.org/show_bug.cgi?id=710519
2013-10-19 19:04:00 +02:00
|
|
|
#elif defined(_SC_NPROCESSORS_ONLN)
|
2012-12-17 16:47:53 +01:00
|
|
|
{
|
|
|
|
int count;
|
|
|
|
|
|
|
|
count = sysconf (_SC_NPROCESSORS_ONLN);
|
|
|
|
if (count > 0)
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
#elif defined HW_NCPU
|
|
|
|
{
|
|
|
|
int mib[2], count = 0;
|
|
|
|
size_t len;
|
|
|
|
|
|
|
|
mib[0] = CTL_HW;
|
|
|
|
mib[1] = HW_NCPU;
|
|
|
|
len = sizeof(count);
|
|
|
|
|
|
|
|
if (sysctl (mib, 2, &count, &len, NULL, 0) == 0 && count > 0)
|
|
|
|
return count;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return 1; /* Fallback */
|
|
|
|
}
|
|
|
|
|
2011-09-30 20:22:04 +02:00
|
|
|
/* Epilogue {{{1 */
|
|
|
|
/* vim: set foldmethod=marker: */
|