Split glib.h into many header files mostly according to the resp.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h, galloca.h, garray.h, gasyncqueue.h, gbacktrace.h,
gcache.h, gcompletion.h, gconvert.h, gdataset.h, gdate.h, ghash.h,
ghook.h, giochannel.h, glist.h , gmacros.h, gmain.h, gmem.h,
gmessages.h, gnode.h, gprimes.h, gquark.h, gqueue.h, grand.h,
grel.h, gscanner.h, gslist.h, gstrfuncs.h, gstring.h, gthread.h,
gthreadpool.h, gtimer.h, gtree.h, gtypes.h, gutils.h: Split glib.h
into many header files mostly according to the resp. *.c-files.
* gmacros.h: Added G_BEGIN_DECLS and G_END_DECLS to mean: 'in case
of C++: extern "C" { ... }' analogous to glibc __BEGIN_DECLS and
__END_DECLS.
* configure.in, gerror.h, gfileutils.h, gshell.h, gspawn.h,
gunicode.h, : Changed guard-macro names to something more
consistent.
* configure.in, *.h: Use G_BEGIN_DECLS and G_END_DECLS.
2000-10-12 13:52:07 +02:00
|
|
|
/* GLIB - Library of useful routines for C programming
|
|
|
|
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Modified by the GLib Team and others 1997-2000. See the AUTHORS
|
|
|
|
* file for a list of people on the GLib Team. See the ChangeLog
|
|
|
|
* files for a list of changes. These files are distributed with
|
2008-03-14 20:30:38 +01:00
|
|
|
* GLib at ftp://ftp.gtk.org/pub/gtk/.
|
Split glib.h into many header files mostly according to the resp.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h, galloca.h, garray.h, gasyncqueue.h, gbacktrace.h,
gcache.h, gcompletion.h, gconvert.h, gdataset.h, gdate.h, ghash.h,
ghook.h, giochannel.h, glist.h , gmacros.h, gmain.h, gmem.h,
gmessages.h, gnode.h, gprimes.h, gquark.h, gqueue.h, grand.h,
grel.h, gscanner.h, gslist.h, gstrfuncs.h, gstring.h, gthread.h,
gthreadpool.h, gtimer.h, gtree.h, gtypes.h, gutils.h: Split glib.h
into many header files mostly according to the resp. *.c-files.
* gmacros.h: Added G_BEGIN_DECLS and G_END_DECLS to mean: 'in case
of C++: extern "C" { ... }' analogous to glibc __BEGIN_DECLS and
__END_DECLS.
* configure.in, gerror.h, gfileutils.h, gshell.h, gspawn.h,
gunicode.h, : Changed guard-macro names to something more
consistent.
* configure.in, *.h: Use G_BEGIN_DECLS and G_END_DECLS.
2000-10-12 13:52:07 +02:00
|
|
|
*/
|
|
|
|
|
2008-05-05 17:02:15 +02:00
|
|
|
#if defined(G_DISABLE_SINGLE_INCLUDES) && !defined (__GLIB_H_INSIDE__) && !defined (GLIB_COMPILATION)
|
2008-03-14 20:30:38 +01:00
|
|
|
#error "Only <glib.h> can be included directly."
|
|
|
|
#endif
|
|
|
|
|
Split glib.h into many header files mostly according to the resp.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h, galloca.h, garray.h, gasyncqueue.h, gbacktrace.h,
gcache.h, gcompletion.h, gconvert.h, gdataset.h, gdate.h, ghash.h,
ghook.h, giochannel.h, glist.h , gmacros.h, gmain.h, gmem.h,
gmessages.h, gnode.h, gprimes.h, gquark.h, gqueue.h, grand.h,
grel.h, gscanner.h, gslist.h, gstrfuncs.h, gstring.h, gthread.h,
gthreadpool.h, gtimer.h, gtree.h, gtypes.h, gutils.h: Split glib.h
into many header files mostly according to the resp. *.c-files.
* gmacros.h: Added G_BEGIN_DECLS and G_END_DECLS to mean: 'in case
of C++: extern "C" { ... }' analogous to glibc __BEGIN_DECLS and
__END_DECLS.
* configure.in, gerror.h, gfileutils.h, gshell.h, gspawn.h,
gunicode.h, : Changed guard-macro names to something more
consistent.
* configure.in, *.h: Use G_BEGIN_DECLS and G_END_DECLS.
2000-10-12 13:52:07 +02:00
|
|
|
#ifndef __G_THREAD_H__
|
|
|
|
#define __G_THREAD_H__
|
|
|
|
|
2001-06-26 18:01:21 +02:00
|
|
|
#include <glib/gerror.h>
|
2007-07-10 12:30:36 +02:00
|
|
|
#include <glib/gutils.h> /* for G_INLINE_FUNC */
|
|
|
|
#include <glib/gatomic.h> /* for g_atomic_pointer_get */
|
Split glib.h into many header files mostly according to the resp.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h, galloca.h, garray.h, gasyncqueue.h, gbacktrace.h,
gcache.h, gcompletion.h, gconvert.h, gdataset.h, gdate.h, ghash.h,
ghook.h, giochannel.h, glist.h , gmacros.h, gmain.h, gmem.h,
gmessages.h, gnode.h, gprimes.h, gquark.h, gqueue.h, grand.h,
grel.h, gscanner.h, gslist.h, gstrfuncs.h, gstring.h, gthread.h,
gthreadpool.h, gtimer.h, gtree.h, gtypes.h, gutils.h: Split glib.h
into many header files mostly according to the resp. *.c-files.
* gmacros.h: Added G_BEGIN_DECLS and G_END_DECLS to mean: 'in case
of C++: extern "C" { ... }' analogous to glibc __BEGIN_DECLS and
__END_DECLS.
* configure.in, gerror.h, gfileutils.h, gshell.h, gspawn.h,
gunicode.h, : Changed guard-macro names to something more
consistent.
* configure.in, *.h: Use G_BEGIN_DECLS and G_END_DECLS.
2000-10-12 13:52:07 +02:00
|
|
|
|
|
|
|
G_BEGIN_DECLS
|
|
|
|
|
|
|
|
/* GLib Thread support
|
|
|
|
*/
|
|
|
|
|
2001-02-13 16:57:44 +01:00
|
|
|
extern GQuark g_thread_error_quark (void);
|
|
|
|
#define G_THREAD_ERROR g_thread_error_quark ()
|
Split glib.h into many header files mostly according to the resp.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h, galloca.h, garray.h, gasyncqueue.h, gbacktrace.h,
gcache.h, gcompletion.h, gconvert.h, gdataset.h, gdate.h, ghash.h,
ghook.h, giochannel.h, glist.h , gmacros.h, gmain.h, gmem.h,
gmessages.h, gnode.h, gprimes.h, gquark.h, gqueue.h, grand.h,
grel.h, gscanner.h, gslist.h, gstrfuncs.h, gstring.h, gthread.h,
gthreadpool.h, gtimer.h, gtree.h, gtypes.h, gutils.h: Split glib.h
into many header files mostly according to the resp. *.c-files.
* gmacros.h: Added G_BEGIN_DECLS and G_END_DECLS to mean: 'in case
of C++: extern "C" { ... }' analogous to glibc __BEGIN_DECLS and
__END_DECLS.
* configure.in, gerror.h, gfileutils.h, gshell.h, gspawn.h,
gunicode.h, : Changed guard-macro names to something more
consistent.
* configure.in, *.h: Use G_BEGIN_DECLS and G_END_DECLS.
2000-10-12 13:52:07 +02:00
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
G_THREAD_ERROR_AGAIN /* Resource temporarily unavailable */
|
|
|
|
} GThreadError;
|
|
|
|
|
2001-05-09 14:51:21 +02:00
|
|
|
typedef gpointer (*GThreadFunc) (gpointer data);
|
Split glib.h into many header files mostly according to the resp.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h, galloca.h, garray.h, gasyncqueue.h, gbacktrace.h,
gcache.h, gcompletion.h, gconvert.h, gdataset.h, gdate.h, ghash.h,
ghook.h, giochannel.h, glist.h , gmacros.h, gmain.h, gmem.h,
gmessages.h, gnode.h, gprimes.h, gquark.h, gqueue.h, grand.h,
grel.h, gscanner.h, gslist.h, gstrfuncs.h, gstring.h, gthread.h,
gthreadpool.h, gtimer.h, gtree.h, gtypes.h, gutils.h: Split glib.h
into many header files mostly according to the resp. *.c-files.
* gmacros.h: Added G_BEGIN_DECLS and G_END_DECLS to mean: 'in case
of C++: extern "C" { ... }' analogous to glibc __BEGIN_DECLS and
__END_DECLS.
* configure.in, gerror.h, gfileutils.h, gshell.h, gspawn.h,
gunicode.h, : Changed guard-macro names to something more
consistent.
* configure.in, *.h: Use G_BEGIN_DECLS and G_END_DECLS.
2000-10-12 13:52:07 +02:00
|
|
|
|
|
|
|
typedef struct _GThread GThread;
|
|
|
|
|
|
|
|
typedef struct _GMutex GMutex;
|
2011-09-21 20:36:53 +02:00
|
|
|
typedef struct _GRecMutex GRecMutex;
|
2011-09-21 16:19:36 +02:00
|
|
|
typedef struct _GRWLock GRWLock;
|
Split glib.h into many header files mostly according to the resp.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h, galloca.h, garray.h, gasyncqueue.h, gbacktrace.h,
gcache.h, gcompletion.h, gconvert.h, gdataset.h, gdate.h, ghash.h,
ghook.h, giochannel.h, glist.h , gmacros.h, gmain.h, gmem.h,
gmessages.h, gnode.h, gprimes.h, gquark.h, gqueue.h, grand.h,
grel.h, gscanner.h, gslist.h, gstrfuncs.h, gstring.h, gthread.h,
gthreadpool.h, gtimer.h, gtree.h, gtypes.h, gutils.h: Split glib.h
into many header files mostly according to the resp. *.c-files.
* gmacros.h: Added G_BEGIN_DECLS and G_END_DECLS to mean: 'in case
of C++: extern "C" { ... }' analogous to glibc __BEGIN_DECLS and
__END_DECLS.
* configure.in, gerror.h, gfileutils.h, gshell.h, gspawn.h,
gunicode.h, : Changed guard-macro names to something more
consistent.
* configure.in, *.h: Use G_BEGIN_DECLS and G_END_DECLS.
2000-10-12 13:52:07 +02:00
|
|
|
typedef struct _GCond GCond;
|
|
|
|
typedef struct _GPrivate GPrivate;
|
|
|
|
typedef struct _GStaticPrivate GStaticPrivate;
|
|
|
|
|
2011-09-17 00:05:23 +02:00
|
|
|
#define G_MUTEX_INIT { NULL }
|
|
|
|
struct _GMutex
|
|
|
|
{
|
2011-09-21 16:19:36 +02:00
|
|
|
gpointer impl;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define G_RW_LOCK_INIT { NULL }
|
|
|
|
struct _GRWLock
|
|
|
|
{
|
|
|
|
gpointer impl;
|
2011-09-17 00:05:23 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#define G_COND_INIT { NULL }
|
|
|
|
struct _GCond
|
|
|
|
{
|
2011-09-21 16:19:36 +02:00
|
|
|
gpointer impl;
|
2011-09-17 00:05:23 +02:00
|
|
|
};
|
|
|
|
|
2011-09-21 20:36:53 +02:00
|
|
|
#define G_REC_MUTEX_INIT { NULL }
|
|
|
|
struct _GRecMutex
|
|
|
|
{
|
|
|
|
gpointer impl;
|
|
|
|
};
|
|
|
|
|
2011-09-30 20:22:04 +02:00
|
|
|
#define G_PRIVATE_INIT(notify) { NULL, (notify), { NULL, NULL } }
|
|
|
|
struct _GPrivate
|
|
|
|
{
|
|
|
|
gpointer p;
|
|
|
|
GDestroyNotify notify;
|
|
|
|
gpointer future[2];
|
|
|
|
};
|
|
|
|
|
2011-09-25 07:32:41 +02:00
|
|
|
void g_thread_init (gpointer vtable);
|
Split glib.h into many header files mostly according to the resp.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h, galloca.h, garray.h, gasyncqueue.h, gbacktrace.h,
gcache.h, gcompletion.h, gconvert.h, gdataset.h, gdate.h, ghash.h,
ghook.h, giochannel.h, glist.h , gmacros.h, gmain.h, gmem.h,
gmessages.h, gnode.h, gprimes.h, gquark.h, gqueue.h, grand.h,
grel.h, gscanner.h, gslist.h, gstrfuncs.h, gstring.h, gthread.h,
gthreadpool.h, gtimer.h, gtree.h, gtypes.h, gutils.h: Split glib.h
into many header files mostly according to the resp. *.c-files.
* gmacros.h: Added G_BEGIN_DECLS and G_END_DECLS to mean: 'in case
of C++: extern "C" { ... }' analogous to glibc __BEGIN_DECLS and
__END_DECLS.
* configure.in, gerror.h, gfileutils.h, gshell.h, gspawn.h,
gunicode.h, : Changed guard-macro names to something more
consistent.
* configure.in, *.h: Use G_BEGIN_DECLS and G_END_DECLS.
2000-10-12 13:52:07 +02:00
|
|
|
|
2008-12-18 20:20:42 +01:00
|
|
|
gboolean g_thread_get_initialized (void);
|
|
|
|
|
2011-09-25 07:32:41 +02:00
|
|
|
GLIB_VAR gboolean g_threads_got_initialized;
|
Split glib.h into many header files mostly according to the resp.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h, galloca.h, garray.h, gasyncqueue.h, gbacktrace.h,
gcache.h, gcompletion.h, gconvert.h, gdataset.h, gdate.h, ghash.h,
ghook.h, giochannel.h, glist.h , gmacros.h, gmain.h, gmem.h,
gmessages.h, gnode.h, gprimes.h, gquark.h, gqueue.h, grand.h,
grel.h, gscanner.h, gslist.h, gstrfuncs.h, gstring.h, gthread.h,
gthreadpool.h, gtimer.h, gtree.h, gtypes.h, gutils.h: Split glib.h
into many header files mostly according to the resp. *.c-files.
* gmacros.h: Added G_BEGIN_DECLS and G_END_DECLS to mean: 'in case
of C++: extern "C" { ... }' analogous to glibc __BEGIN_DECLS and
__END_DECLS.
* configure.in, gerror.h, gfileutils.h, gshell.h, gspawn.h,
gunicode.h, : Changed guard-macro names to something more
consistent.
* configure.in, *.h: Use G_BEGIN_DECLS and G_END_DECLS.
2000-10-12 13:52:07 +02:00
|
|
|
|
2011-08-31 20:01:45 +02:00
|
|
|
#if defined(G_THREADS_MANDATORY)
|
2010-01-12 21:26:52 +01:00
|
|
|
#define g_thread_supported() 1
|
|
|
|
#else
|
Split glib.h into many header files mostly according to the resp.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h, galloca.h, garray.h, gasyncqueue.h, gbacktrace.h,
gcache.h, gcompletion.h, gconvert.h, gdataset.h, gdate.h, ghash.h,
ghook.h, giochannel.h, glist.h , gmacros.h, gmain.h, gmem.h,
gmessages.h, gnode.h, gprimes.h, gquark.h, gqueue.h, grand.h,
grel.h, gscanner.h, gslist.h, gstrfuncs.h, gstring.h, gthread.h,
gthreadpool.h, gtimer.h, gtree.h, gtypes.h, gutils.h: Split glib.h
into many header files mostly according to the resp. *.c-files.
* gmacros.h: Added G_BEGIN_DECLS and G_END_DECLS to mean: 'in case
of C++: extern "C" { ... }' analogous to glibc __BEGIN_DECLS and
__END_DECLS.
* configure.in, gerror.h, gfileutils.h, gshell.h, gspawn.h,
gunicode.h, : Changed guard-macro names to something more
consistent.
* configure.in, *.h: Use G_BEGIN_DECLS and G_END_DECLS.
2000-10-12 13:52:07 +02:00
|
|
|
#define g_thread_supported() (g_threads_got_initialized)
|
2010-01-12 21:26:52 +01:00
|
|
|
#endif
|
2001-05-08 10:23:18 +02:00
|
|
|
|
2011-09-25 07:32:41 +02:00
|
|
|
GMutex* g_static_mutex_get_mutex_impl (GMutex **mutex);
|
|
|
|
|
2011-10-02 16:01:57 +02:00
|
|
|
GThread *g_thread_new (const gchar *name,
|
|
|
|
GThreadFunc func,
|
2011-09-19 13:16:30 +02:00
|
|
|
gpointer data,
|
|
|
|
gboolean joinable,
|
|
|
|
GError **error);
|
|
|
|
|
2011-10-02 16:01:57 +02:00
|
|
|
GThread *g_thread_new_full (const gchar *name,
|
|
|
|
GThreadFunc func,
|
2011-09-19 13:16:30 +02:00
|
|
|
gpointer data,
|
|
|
|
gboolean joinable,
|
|
|
|
gsize stack_size,
|
|
|
|
GError **error);
|
|
|
|
|
|
|
|
GThread* g_thread_self (void);
|
|
|
|
void g_thread_exit (gpointer retval);
|
|
|
|
gpointer g_thread_join (GThread *thread);
|
|
|
|
void g_thread_yield (void);
|
|
|
|
|
2003-07-09 01:43:48 +02:00
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
G_ONCE_STATUS_NOTCALLED,
|
|
|
|
G_ONCE_STATUS_PROGRESS,
|
2011-09-25 07:32:41 +02:00
|
|
|
G_ONCE_STATUS_READY
|
2003-07-09 01:43:48 +02:00
|
|
|
} GOnceStatus;
|
|
|
|
|
|
|
|
typedef struct _GOnce GOnce;
|
|
|
|
struct _GOnce
|
|
|
|
{
|
|
|
|
volatile GOnceStatus status;
|
|
|
|
volatile gpointer retval;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define G_ONCE_INIT { G_ONCE_STATUS_NOTCALLED, NULL }
|
|
|
|
|
|
|
|
gpointer g_once_impl (GOnce *once, GThreadFunc func, gpointer arg);
|
|
|
|
|
2004-02-29 17:48:37 +01:00
|
|
|
#ifdef G_ATOMIC_OP_MEMORY_BARRIER_NEEDED
|
|
|
|
# define g_once(once, func, arg) g_once_impl ((once), (func), (arg))
|
|
|
|
#else /* !G_ATOMIC_OP_MEMORY_BARRIER_NEEDED*/
|
|
|
|
# define g_once(once, func, arg) \
|
|
|
|
(((once)->status == G_ONCE_STATUS_READY) ? \
|
|
|
|
(once)->retval : \
|
|
|
|
g_once_impl ((once), (func), (arg)))
|
|
|
|
#endif /* G_ATOMIC_OP_MEMORY_BARRIER_NEEDED */
|
2007-07-10 12:30:36 +02:00
|
|
|
|
|
|
|
/* initialize-once guards, keyed by value_location */
|
|
|
|
G_INLINE_FUNC gboolean g_once_init_enter (volatile gsize *value_location);
|
|
|
|
gboolean g_once_init_enter_impl (volatile gsize *value_location);
|
|
|
|
void g_once_init_leave (volatile gsize *value_location,
|
|
|
|
gsize initialization_value);
|
|
|
|
#if defined (G_CAN_INLINE) || defined (__G_THREAD_C__)
|
|
|
|
G_INLINE_FUNC gboolean
|
|
|
|
g_once_init_enter (volatile gsize *value_location)
|
|
|
|
{
|
2009-02-17 17:14:39 +01:00
|
|
|
if G_LIKELY ((gpointer) g_atomic_pointer_get (value_location) != NULL)
|
2007-07-10 12:30:36 +02:00
|
|
|
return FALSE;
|
|
|
|
else
|
|
|
|
return g_once_init_enter_impl (value_location);
|
|
|
|
}
|
|
|
|
#endif /* G_CAN_INLINE || __G_THREAD_C__ */
|
|
|
|
|
Split glib.h into many header files mostly according to the resp.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h, galloca.h, garray.h, gasyncqueue.h, gbacktrace.h,
gcache.h, gcompletion.h, gconvert.h, gdataset.h, gdate.h, ghash.h,
ghook.h, giochannel.h, glist.h , gmacros.h, gmain.h, gmem.h,
gmessages.h, gnode.h, gprimes.h, gquark.h, gqueue.h, grand.h,
grel.h, gscanner.h, gslist.h, gstrfuncs.h, gstring.h, gthread.h,
gthreadpool.h, gtimer.h, gtree.h, gtypes.h, gutils.h: Split glib.h
into many header files mostly according to the resp. *.c-files.
* gmacros.h: Added G_BEGIN_DECLS and G_END_DECLS to mean: 'in case
of C++: extern "C" { ... }' analogous to glibc __BEGIN_DECLS and
__END_DECLS.
* configure.in, gerror.h, gfileutils.h, gshell.h, gspawn.h,
gunicode.h, : Changed guard-macro names to something more
consistent.
* configure.in, *.h: Use G_BEGIN_DECLS and G_END_DECLS.
2000-10-12 13:52:07 +02:00
|
|
|
#define G_LOCK_NAME(name) g__ ## name ## _lock
|
2011-08-31 20:01:45 +02:00
|
|
|
#define G_LOCK_DEFINE_STATIC(name) static G_LOCK_DEFINE (name)
|
|
|
|
#define G_LOCK_DEFINE(name) \
|
2011-09-18 00:33:25 +02:00
|
|
|
GMutex G_LOCK_NAME (name) = G_MUTEX_INIT
|
|
|
|
#define G_LOCK_EXTERN(name) extern GMutex G_LOCK_NAME (name)
|
2011-08-31 20:01:45 +02:00
|
|
|
|
|
|
|
#ifdef G_DEBUG_LOCKS
|
|
|
|
# define G_LOCK(name) G_STMT_START{ \
|
|
|
|
g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, \
|
|
|
|
"file %s: line %d (%s): locking: %s ", \
|
|
|
|
__FILE__, __LINE__, G_STRFUNC, \
|
|
|
|
#name); \
|
2011-09-18 00:33:25 +02:00
|
|
|
g_mutex_lock (&G_LOCK_NAME (name)); \
|
2011-08-31 20:01:45 +02:00
|
|
|
}G_STMT_END
|
|
|
|
# define G_UNLOCK(name) G_STMT_START{ \
|
|
|
|
g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, \
|
|
|
|
"file %s: line %d (%s): unlocking: %s ", \
|
|
|
|
__FILE__, __LINE__, G_STRFUNC, \
|
|
|
|
#name); \
|
2011-09-18 00:33:25 +02:00
|
|
|
g_mutex_unlock (&G_LOCK_NAME (name)); \
|
2011-08-31 20:01:45 +02:00
|
|
|
}G_STMT_END
|
|
|
|
# define G_TRYLOCK(name) \
|
|
|
|
(g_log (G_LOG_DOMAIN, G_LOG_LEVEL_DEBUG, \
|
|
|
|
"file %s: line %d (%s): try locking: %s ", \
|
|
|
|
__FILE__, __LINE__, G_STRFUNC, \
|
2011-09-18 00:33:25 +02:00
|
|
|
#name), g_mutex_trylock (&G_LOCK_NAME (name)))
|
2011-08-31 20:01:45 +02:00
|
|
|
#else /* !G_DEBUG_LOCKS */
|
2011-09-18 00:33:25 +02:00
|
|
|
# define G_LOCK(name) g_mutex_lock (&G_LOCK_NAME (name))
|
|
|
|
# define G_UNLOCK(name) g_mutex_unlock (&G_LOCK_NAME (name))
|
|
|
|
# define G_TRYLOCK(name) g_mutex_trylock (&G_LOCK_NAME (name))
|
2011-08-31 20:01:45 +02:00
|
|
|
#endif /* !G_DEBUG_LOCKS */
|
Split glib.h into many header files mostly according to the resp.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h, galloca.h, garray.h, gasyncqueue.h, gbacktrace.h,
gcache.h, gcompletion.h, gconvert.h, gdataset.h, gdate.h, ghash.h,
ghook.h, giochannel.h, glist.h , gmacros.h, gmain.h, gmem.h,
gmessages.h, gnode.h, gprimes.h, gquark.h, gqueue.h, grand.h,
grel.h, gscanner.h, gslist.h, gstrfuncs.h, gstring.h, gthread.h,
gthreadpool.h, gtimer.h, gtree.h, gtypes.h, gutils.h: Split glib.h
into many header files mostly according to the resp. *.c-files.
* gmacros.h: Added G_BEGIN_DECLS and G_END_DECLS to mean: 'in case
of C++: extern "C" { ... }' analogous to glibc __BEGIN_DECLS and
__END_DECLS.
* configure.in, gerror.h, gfileutils.h, gshell.h, gspawn.h,
gunicode.h, : Changed guard-macro names to something more
consistent.
* configure.in, *.h: Use G_BEGIN_DECLS and G_END_DECLS.
2000-10-12 13:52:07 +02:00
|
|
|
|
2011-09-17 00:05:23 +02:00
|
|
|
|
2011-09-19 06:29:53 +02:00
|
|
|
GMutex * g_mutex_new (void);
|
|
|
|
void g_mutex_free (GMutex *mutex);
|
2011-09-17 00:05:23 +02:00
|
|
|
void g_mutex_init (GMutex *mutex);
|
|
|
|
void g_mutex_clear (GMutex *mutex);
|
|
|
|
|
|
|
|
void g_mutex_lock (GMutex *mutex);
|
|
|
|
void g_mutex_unlock (GMutex *mutex);
|
|
|
|
gboolean g_mutex_trylock (GMutex *mutex);
|
|
|
|
|
2011-10-03 02:24:18 +02:00
|
|
|
void g_rw_lock_init (GRWLock *rw_lock);
|
|
|
|
void g_rw_lock_clear (GRWLock *rw_lock);
|
|
|
|
void g_rw_lock_writer_lock (GRWLock *rw_lock);
|
|
|
|
gboolean g_rw_lock_writer_trylock (GRWLock *rw_lock);
|
|
|
|
void g_rw_lock_writer_unlock (GRWLock *rw_lock);
|
|
|
|
void g_rw_lock_reader_lock (GRWLock *rw_lock);
|
|
|
|
gboolean g_rw_lock_reader_trylock (GRWLock *rw_lock);
|
|
|
|
void g_rw_lock_reader_unlock (GRWLock *rw_lock);
|
2011-09-21 16:19:36 +02:00
|
|
|
|
2011-09-21 20:36:53 +02:00
|
|
|
void g_rec_mutex_init (GRecMutex *rec_mutex);
|
|
|
|
void g_rec_mutex_clear (GRecMutex *rec_mutex);
|
|
|
|
void g_rec_mutex_lock (GRecMutex *rec_mutex);
|
|
|
|
gboolean g_rec_mutex_trylock (GRecMutex *rec_mutex);
|
|
|
|
void g_rec_mutex_unlock (GRecMutex *rec_mutex);
|
|
|
|
|
2011-09-19 06:29:53 +02:00
|
|
|
GCond * g_cond_new (void);
|
|
|
|
void g_cond_free (GCond *cond);
|
2011-09-17 00:05:23 +02:00
|
|
|
void g_cond_init (GCond *cond);
|
|
|
|
void g_cond_clear (GCond *cond);
|
|
|
|
|
|
|
|
void g_cond_wait (GCond *cond,
|
|
|
|
GMutex *mutex);
|
|
|
|
void g_cond_signal (GCond *cond);
|
|
|
|
void g_cond_broadcast (GCond *cond);
|
|
|
|
gboolean g_cond_timed_wait (GCond *cond,
|
|
|
|
GMutex *mutex,
|
|
|
|
GTimeVal *timeval);
|
|
|
|
gboolean g_cond_timedwait (GCond *cond,
|
|
|
|
GMutex *mutex,
|
|
|
|
gint64 abs_time);
|
|
|
|
|
2011-09-18 07:10:07 +02:00
|
|
|
gpointer g_private_get (GPrivate *key);
|
|
|
|
void g_private_set (GPrivate *key,
|
2011-09-18 04:00:27 +02:00
|
|
|
gpointer value);
|
2011-09-30 20:22:04 +02:00
|
|
|
void g_private_replace (GPrivate *key,
|
|
|
|
gpointer value);
|
2011-09-18 04:00:27 +02:00
|
|
|
|
Split glib.h into many header files mostly according to the resp.
2000-10-12 Sebastian Wilhelmi <wilhelmi@ira.uka.de>
* glib.h, galloca.h, garray.h, gasyncqueue.h, gbacktrace.h,
gcache.h, gcompletion.h, gconvert.h, gdataset.h, gdate.h, ghash.h,
ghook.h, giochannel.h, glist.h , gmacros.h, gmain.h, gmem.h,
gmessages.h, gnode.h, gprimes.h, gquark.h, gqueue.h, grand.h,
grel.h, gscanner.h, gslist.h, gstrfuncs.h, gstring.h, gthread.h,
gthreadpool.h, gtimer.h, gtree.h, gtypes.h, gutils.h: Split glib.h
into many header files mostly according to the resp. *.c-files.
* gmacros.h: Added G_BEGIN_DECLS and G_END_DECLS to mean: 'in case
of C++: extern "C" { ... }' analogous to glibc __BEGIN_DECLS and
__END_DECLS.
* configure.in, gerror.h, gfileutils.h, gshell.h, gspawn.h,
gunicode.h, : Changed guard-macro names to something more
consistent.
* configure.in, *.h: Use G_BEGIN_DECLS and G_END_DECLS.
2000-10-12 13:52:07 +02:00
|
|
|
G_END_DECLS
|
|
|
|
|
|
|
|
#endif /* __G_THREAD_H__ */
|