summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Taylor <otaylor@redhat.com>1999-07-07 18:55:46 +0000
committerOwen Taylor <otaylor@src.gnome.org>1999-07-07 18:55:46 +0000
commit8e401114efe3244104df4a61cafaf875a4af868b (patch)
tree9a60c49c962e3afdcfe66a5f25e810bf14fe39be
parent46144b1be487c279b352edeae9166b2ab9f32fc3 (diff)
downloadgdk-pixbuf-8e401114efe3244104df4a61cafaf875a4af868b.tar.gz
Unlock around call to g_main_iteration() - since that will regrab GTK+
Wed Jul 7 14:59:01 1999 Owen Taylor <otaylor@redhat.com> * gtk/gtkmain.c (gtk_main_iteration): Unlock around call to g_main_iteration() - since that will regrab GTK+ lock to process events.
-rw-r--r--ChangeLog6
-rw-r--r--ChangeLog.pre-2-06
-rw-r--r--ChangeLog.pre-2-106
-rw-r--r--ChangeLog.pre-2-26
-rw-r--r--ChangeLog.pre-2-46
-rw-r--r--ChangeLog.pre-2-66
-rw-r--r--ChangeLog.pre-2-86
-rw-r--r--gtk/gtkmain.c2
8 files changed, 44 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 37f552176..b0c331fc6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+Wed Jul 7 14:59:01 1999 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkmain.c (gtk_main_iteration): Unlock around
+ call to g_main_iteration() - since that will regrab
+ GTK+ lock to process events.
+
Mon Jul 5 20:36:03 1999 Owen Taylor <otaylor@redhat.com>
* docs/generation.txt: Added a file that gives
diff --git a/ChangeLog.pre-2-0 b/ChangeLog.pre-2-0
index 37f552176..b0c331fc6 100644
--- a/ChangeLog.pre-2-0
+++ b/ChangeLog.pre-2-0
@@ -1,3 +1,9 @@
+Wed Jul 7 14:59:01 1999 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkmain.c (gtk_main_iteration): Unlock around
+ call to g_main_iteration() - since that will regrab
+ GTK+ lock to process events.
+
Mon Jul 5 20:36:03 1999 Owen Taylor <otaylor@redhat.com>
* docs/generation.txt: Added a file that gives
diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10
index 37f552176..b0c331fc6 100644
--- a/ChangeLog.pre-2-10
+++ b/ChangeLog.pre-2-10
@@ -1,3 +1,9 @@
+Wed Jul 7 14:59:01 1999 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkmain.c (gtk_main_iteration): Unlock around
+ call to g_main_iteration() - since that will regrab
+ GTK+ lock to process events.
+
Mon Jul 5 20:36:03 1999 Owen Taylor <otaylor@redhat.com>
* docs/generation.txt: Added a file that gives
diff --git a/ChangeLog.pre-2-2 b/ChangeLog.pre-2-2
index 37f552176..b0c331fc6 100644
--- a/ChangeLog.pre-2-2
+++ b/ChangeLog.pre-2-2
@@ -1,3 +1,9 @@
+Wed Jul 7 14:59:01 1999 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkmain.c (gtk_main_iteration): Unlock around
+ call to g_main_iteration() - since that will regrab
+ GTK+ lock to process events.
+
Mon Jul 5 20:36:03 1999 Owen Taylor <otaylor@redhat.com>
* docs/generation.txt: Added a file that gives
diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4
index 37f552176..b0c331fc6 100644
--- a/ChangeLog.pre-2-4
+++ b/ChangeLog.pre-2-4
@@ -1,3 +1,9 @@
+Wed Jul 7 14:59:01 1999 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkmain.c (gtk_main_iteration): Unlock around
+ call to g_main_iteration() - since that will regrab
+ GTK+ lock to process events.
+
Mon Jul 5 20:36:03 1999 Owen Taylor <otaylor@redhat.com>
* docs/generation.txt: Added a file that gives
diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6
index 37f552176..b0c331fc6 100644
--- a/ChangeLog.pre-2-6
+++ b/ChangeLog.pre-2-6
@@ -1,3 +1,9 @@
+Wed Jul 7 14:59:01 1999 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkmain.c (gtk_main_iteration): Unlock around
+ call to g_main_iteration() - since that will regrab
+ GTK+ lock to process events.
+
Mon Jul 5 20:36:03 1999 Owen Taylor <otaylor@redhat.com>
* docs/generation.txt: Added a file that gives
diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8
index 37f552176..b0c331fc6 100644
--- a/ChangeLog.pre-2-8
+++ b/ChangeLog.pre-2-8
@@ -1,3 +1,9 @@
+Wed Jul 7 14:59:01 1999 Owen Taylor <otaylor@redhat.com>
+
+ * gtk/gtkmain.c (gtk_main_iteration): Unlock around
+ call to g_main_iteration() - since that will regrab
+ GTK+ lock to process events.
+
Mon Jul 5 20:36:03 1999 Owen Taylor <otaylor@redhat.com>
* docs/generation.txt: Added a file that gives
diff --git a/gtk/gtkmain.c b/gtk/gtkmain.c
index 3b326ef48..a4c1ac6f6 100644
--- a/gtk/gtkmain.c
+++ b/gtk/gtkmain.c
@@ -545,7 +545,9 @@ gtk_events_pending (void)
gint
gtk_main_iteration (void)
{
+ GDK_THREADS_LEAVE ();
g_main_iteration (TRUE);
+ GDK_THREADS_ENTER ();
if (main_loops)
return !g_main_is_running (main_loops->data);