summaryrefslogtreecommitdiffstats
path: root/ChangeLog
diff options
context:
space:
mode:
authorPaul Pogonyshev <pogonyshev@gmx.net>2008-08-27 21:37:30 +0000
committerPaul Pogonyshev <paulp@src.gnome.org>2008-08-27 21:37:30 +0000
commit328b8849ee7e8db2cb02c710a2fadaaac20d0da3 (patch)
tree03220ac38ac3152f2c32da4f81e0017f5db0f35f /ChangeLog
parenta387a178ed400de963cedd56c6c43fe10f26913e (diff)
downloadpygobject-328b8849ee7e8db2cb02c710a2fadaaac20d0da3.tar.gz
pygobject-328b8849ee7e8db2cb02c710a2fadaaac20d0da3.tar.xz
pygobject-328b8849ee7e8db2cb02c710a2fadaaac20d0da3.zip
Bug 547633 – cannot create new threads when pygtk is used
2008-08-28 Paul Pogonyshev <pogonyshev@gmx.net> Bug 547633 – cannot create new threads when pygtk is used * glib/pyglib.c (pyglib_notify_on_enabling_threads): New function. (pyglib_enable_threads): Invoke all callbacks added with new pyglib_notify_on_enabling_threads(). * gobject/gobjectmodule.c (pyg_note_threads_enabled): New function (callback for new pyglib_notify_on_enabling_threads()). (PYGLIB_MODULE_START): Initialize 'pygobject_api_functions.threads_enabled' and also watch for thread being enabled later on. svn path=/trunk/; revision=952
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog14
1 files changed, 14 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index e7f6dc7..ded2d7d 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,19 @@
2008-08-28 Paul Pogonyshev <pogonyshev@gmx.net>
+ Bug 547633 – cannot create new threads when pygtk is used
+
+ * glib/pyglib.c (pyglib_notify_on_enabling_threads): New function.
+ (pyglib_enable_threads): Invoke all callbacks added with new
+ pyglib_notify_on_enabling_threads().
+
+ * gobject/gobjectmodule.c (pyg_note_threads_enabled): New
+ function (callback for new pyglib_notify_on_enabling_threads()).
+ (PYGLIB_MODULE_START): Initialize
+ 'pygobject_api_functions.threads_enabled' and also watch for
+ thread being enabled later on.
+
+2008-08-28 Paul Pogonyshev <pogonyshev@gmx.net>
+
Bug 547088 – wrap g_content_types_get_registered()
* gio/gio.override (_wrap_g_drive_get_volumes): Fix refleak.