summaryrefslogtreecommitdiff
path: root/gmain.c
diff options
context:
space:
mode:
authorTim Janik <timj@gtk.org>1998-12-16 05:38:35 +0000
committerTim Janik <timj@src.gnome.org>1998-12-16 05:38:35 +0000
commitb2e318ff3ecc50d72121a4e8561442a6d79a7a84 (patch)
tree87b800eae111a2ace0cde58292ae72fea3a8c19d /gmain.c
parent06600bd0e6b82639410394ed6b5ebb1189cfdeb3 (diff)
version bump to 1.1.8, binary age 0, interface age 0.
Wed Dec 16 03:16:58 1998 Tim Janik <timj@gtk.org> * configure.in: version bump to 1.1.8, binary age 0, interface age 0. * glib.h: changed g_lock() to G_LOCK(), g_unlock() to G_UNLOCK() and g_trylock() to G_TRYLOCK(), since these are macros that expand to nothing with --disable-threads. changed G_LOCK_DEFINE() to G_LOCK_DECLARE() and introduced G_LOCK_DECLARE_STATIC() to achive the results of static G_LOCK_DECLARE(). changed semantics of g_thread_supported to g_thread_supported() so it can be used as a function like g_module_supported(). the actuall definition is still a macro that expands into a variable for performance reasons though. various indentation and coding style cleanups. * configure.in: added --enable-threads that defaults to yes. * gmutex.c: changed tests g_thread_supported to g_thread_supported (), changed variable settings of g_thread_supported to g_threads_got_initialized. garray.c: gcache.c: gdataset.c: gdate.c: ghash.c: glist.c: gmain.c: gnode.c: gslist.c: gstring.c: gtree.c: gutils.c: changed s/g_lock/G_LOCK/, s/g_unlock/G_UNLOCK/, s/static G_LOCK_DEFINE/G_LOCK_DECLARE_STATIC/.
Diffstat (limited to 'gmain.c')
-rw-r--r--gmain.c46
1 files changed, 23 insertions, 23 deletions
diff --git a/gmain.c b/gmain.c
index 5d3ae8d46..a6b0e5e77 100644
--- a/gmain.c
+++ b/gmain.c
@@ -101,7 +101,7 @@ static GHookList source_list = { 0 };
/* The following lock is used for both the list of sources
* and the list of poll records
*/
-static G_LOCK_DEFINE (main_loop);
+G_LOCK_DECLARE_STATIC (main_loop);
static GSourceFuncs timeout_funcs = {
g_timeout_prepare,
@@ -232,7 +232,7 @@ g_source_add (gint priority,
guint return_val;
GSource *source;
- g_lock (main_loop);
+ G_LOCK (main_loop);
if (!source_list.is_setup)
g_hook_list_init (&source_list, sizeof(GSource));
@@ -261,7 +261,7 @@ g_source_add (gint priority,
write (wake_up_pipe[1], "A", 1);
}
- g_unlock (main_loop);
+ G_UNLOCK (main_loop);
return return_val;
}
@@ -271,7 +271,7 @@ g_source_remove (guint tag)
{
GHook *hook;
- g_lock (main_loop);
+ G_LOCK (main_loop);
hook = g_hook_get (&source_list, tag);
if (hook)
@@ -281,7 +281,7 @@ g_source_remove (guint tag)
g_hook_destroy_link (&source_list, hook);
}
- g_unlock (main_loop);
+ G_UNLOCK (main_loop);
}
void
@@ -289,7 +289,7 @@ g_source_remove_by_user_data (gpointer user_data)
{
GHook *hook;
- g_lock (main_loop);
+ G_LOCK (main_loop);
hook = g_hook_find_data (&source_list, TRUE, user_data);
if (hook)
@@ -299,7 +299,7 @@ g_source_remove_by_user_data (gpointer user_data)
g_hook_destroy_link (&source_list, hook);
}
- g_unlock (main_loop);
+ G_UNLOCK (main_loop);
}
static gboolean
@@ -315,7 +315,7 @@ g_source_remove_by_source_data (gpointer source_data)
{
GHook *hook;
- g_lock (main_loop);
+ G_LOCK (main_loop);
hook = g_hook_find (&source_list, TRUE,
g_source_find_source_data, source_data);
@@ -326,7 +326,7 @@ g_source_remove_by_source_data (gpointer source_data)
g_hook_destroy_link (&source_list, hook);
}
- g_unlock (main_loop);
+ G_UNLOCK (main_loop);
}
void g_get_current_time (GTimeVal *result)
@@ -360,11 +360,11 @@ g_main_dispatch (GTimeVal *current_time)
source->hook.flags |= G_HOOK_FLAG_IN_CALL;
- g_unlock (main_loop);
+ G_UNLOCK (main_loop);
need_destroy = ! dispatch(source_data,
current_time,
hook_data);
- g_lock (main_loop);
+ G_LOCK (main_loop);
source->hook.flags &= ~G_HOOK_FLAG_IN_CALL;
@@ -394,7 +394,7 @@ g_main_iterate (gboolean block, gboolean dispatch)
g_get_current_time (&current_time);
- g_lock (main_loop);
+ G_LOCK (main_loop);
/* If recursing, finish up current dispatch, before starting over */
if (pending_dispatches)
@@ -402,7 +402,7 @@ g_main_iterate (gboolean block, gboolean dispatch)
if (dispatch)
g_main_dispatch (&current_time);
- g_unlock (main_loop);
+ G_UNLOCK (main_loop);
return TRUE;
}
@@ -434,7 +434,7 @@ g_main_iterate (gboolean block, gboolean dispatch)
if (!dispatch)
{
g_hook_unref (&source_list, hook);
- g_unlock (main_loop);
+ G_UNLOCK (main_loop);
return TRUE;
}
else
@@ -499,7 +499,7 @@ g_main_iterate (gboolean block, gboolean dispatch)
else
{
g_hook_unref (&source_list, hook);
- g_unlock (main_loop);
+ G_UNLOCK (main_loop);
return TRUE;
}
}
@@ -519,7 +519,7 @@ g_main_iterate (gboolean block, gboolean dispatch)
retval = TRUE;
}
- g_unlock (main_loop);
+ G_UNLOCK (main_loop);
return retval;
}
@@ -605,10 +605,10 @@ g_main_poll (gint timeout, gboolean use_priority, gint priority)
poll_waiting = TRUE;
- g_unlock (main_loop);
+ G_UNLOCK (main_loop);
npoll = i;
(*poll_func) (fd_array, npoll, timeout);
- g_lock (main_loop);
+ G_LOCK (main_loop);
if (!poll_waiting)
{
@@ -634,9 +634,9 @@ void
g_main_poll_add (gint priority,
GPollFD *fd)
{
- g_lock (main_loop);
+ G_LOCK (main_loop);
g_main_poll_add_unlocked (priority, fd);
- g_unlock (main_loop);
+ G_UNLOCK (main_loop);
}
static void
@@ -676,7 +676,7 @@ g_main_poll_add_unlocked (gint priority,
n_poll_records++;
- g_unlock (main_loop);
+ G_UNLOCK (main_loop);
}
void
@@ -684,7 +684,7 @@ g_main_poll_remove (GPollFD *fd)
{
GPollRec *pollrec, *lastrec;
- g_lock (main_loop);
+ G_LOCK (main_loop);
lastrec = NULL;
pollrec = poll_records;
@@ -708,7 +708,7 @@ g_main_poll_remove (GPollFD *fd)
pollrec = pollrec->next;
}
- g_unlock (main_loop);
+ G_UNLOCK (main_loop);
}
void