From: Tim Janik Date: Mon, 11 Sep 2006 13:10:44 +0000 (+0000) Subject: documented G_DEBUG flags resident-modules and bind-now-modules, patch by X-Git-Url: http://git.openbox.org/?a=commitdiff_plain;h=323e56d824ca619466bf1ec32c2f74e6edc3978a;p=dana%2Fcg-glib.git documented G_DEBUG flags resident-modules and bind-now-modules, patch by Mon Sep 11 14:57:46 2006 Tim Janik * glib/running.sgml: documented G_DEBUG flags resident-modules and bind-now-modules, patch by Christian Persch on bug #345099. --- diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index 073401ec..5b3674b4 100644 --- a/docs/reference/ChangeLog +++ b/docs/reference/ChangeLog @@ -1,3 +1,8 @@ +Mon Sep 11 14:57:46 2006 Tim Janik + + * glib/running.sgml: documented G_DEBUG flags resident-modules + and bind-now-modules, patch by Christian Persch on bug #345099. + 2006-09-10 Matthias Clasen * glib/glib-sections.txt: Add new functions diff --git a/docs/reference/glib/running.sgml b/docs/reference/glib/running.sgml index 5600700e..e38178cd 100644 --- a/docs/reference/glib/running.sgml +++ b/docs/reference/glib/running.sgml @@ -91,6 +91,30 @@ variables like LANG, PATH or HOME. + + resident-modules + + + All modules loaded by GModule will be made resident. This can be useful + for tracking memory leaks in modules which are later unloaded; but it can + also hide bugs where code is accessed after the module would have normally + been unloaded. + This option is special in that it doesn't require GLib to be + configured with debugging support. + + + + + bind-now-modules + + + All modules loaded by GModule will bind their symbols at load time, even + when the code uses %G_MODULE_BIND_LAZY. + This option is special in that it doesn't require GLib to be + configured with debugging support. + + +