From 323e56d824ca619466bf1ec32c2f74e6edc3978a Mon Sep 17 00:00:00 2001 From: Tim Janik Date: Mon, 11 Sep 2006 13:10:44 +0000 Subject: [PATCH] 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. --- docs/reference/ChangeLog | 5 +++++ docs/reference/glib/running.sgml | 24 ++++++++++++++++++++++++ 2 files changed, 29 insertions(+) diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog index 073401e..5b3674b 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 5600700..e38178c 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. + + + -- 2.7.4