summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/reference/ChangeLog8
-rw-r--r--docs/reference/glib/building.sgml5
-rw-r--r--docs/reference/glib/tmpl/linked_lists_double.sgml8
-rw-r--r--docs/reference/glib/tmpl/linked_lists_single.sgml8
-rw-r--r--docs/reference/glib/tmpl/trees-nary.sgml8
5 files changed, 36 insertions, 1 deletions
diff --git a/docs/reference/ChangeLog b/docs/reference/ChangeLog
index 1cccfb7d1..0208f680d 100644
--- a/docs/reference/ChangeLog
+++ b/docs/reference/ChangeLog
@@ -1,3 +1,11 @@
+2004-12-02 Matthias Clasen <mclasen@redhat.com>
+
+ * glib/building.sgml:
+ * glib/tmpl/linked_lists_single.sgml:
+ * glib/tmpl/linked_lists_double.sgml:
+ * glib/tmpl/trees-nary.sgml: Add some warnings regarding
+ --disable-mem-pools.
+
2004-12-01 Matthias Clasen <mclasen@redhat.com>
* glib/tmpl/iochannels.sgml: Fix a typo. (#160162, Tom Copeland)
diff --git a/docs/reference/glib/building.sgml b/docs/reference/glib/building.sgml
index 4c38db5a3..c5de07c23 100644
--- a/docs/reference/glib/building.sgml
+++ b/docs/reference/glib/building.sgml
@@ -244,7 +244,10 @@ How to compile GLib itself
<para>
<structname>GList</structname>, <structname>GSList</structname>,
<structname>GNode</structname>, <structname>GHash</structname>
- allocations
+ allocations. The functions g_list_push_allocator(),
+ g_list_pop_allocator(), g_slist_push_allocator(),
+ g_slist_pop_allocator(), g_node_push_allocator() and
+ g_node_pop_allocator() are not available
</para>
</listitem>
<listitem>
diff --git a/docs/reference/glib/tmpl/linked_lists_double.sgml b/docs/reference/glib/tmpl/linked_lists_double.sgml
index 5da5cb985..e72fa3c7c 100644
--- a/docs/reference/glib/tmpl/linked_lists_double.sgml
+++ b/docs/reference/glib/tmpl/linked_lists_double.sgml
@@ -486,6 +486,10 @@ is not found.
Sets the allocator to use to allocate #GList elements.
Use g_list_pop_allocator() to restore the previous allocator.
</para>
+<para>
+Note that this function is not available if GLib has been compiled
+with <option>--disable-mem-pools</option>
+</para>
@allocator: the #GAllocator to use when allocating #GList elements.
@@ -494,6 +498,10 @@ Use g_list_pop_allocator() to restore the previous allocator.
<para>
Restores the previous #GAllocator, used when allocating #GList elements.
</para>
+<para>
+Note that this function is not available if GLib has been compiled
+with <option>--disable-mem-pools</option>
+</para>
diff --git a/docs/reference/glib/tmpl/linked_lists_single.sgml b/docs/reference/glib/tmpl/linked_lists_single.sgml
index 8a3db2e12..7e744516c 100644
--- a/docs/reference/glib/tmpl/linked_lists_single.sgml
+++ b/docs/reference/glib/tmpl/linked_lists_single.sgml
@@ -407,6 +407,10 @@ is not found.
Sets the allocator to use to allocate #GSList elements.
Use g_slist_pop_allocator() to restore the previous allocator.
</para>
+<para>
+Note that this function is not available if GLib has been compiled
+with <option>--disable-mem-pools</option>
+</para>
@allocator: the #GAllocator to use when allocating #GSList elements.
@@ -415,6 +419,10 @@ Use g_slist_pop_allocator() to restore the previous allocator.
<para>
Restores the previous #GAllocator, used when allocating #GSList elements.
</para>
+<para>
+Note that this function is not available if GLib has been compiled
+with <option>--disable-mem-pools</option>
+</para>
diff --git a/docs/reference/glib/tmpl/trees-nary.sgml b/docs/reference/glib/tmpl/trees-nary.sgml
index 77843f272..6259925af 100644
--- a/docs/reference/glib/tmpl/trees-nary.sgml
+++ b/docs/reference/glib/tmpl/trees-nary.sgml
@@ -519,6 +519,10 @@ allocated.
Sets the allocator to use to allocate #GNode elements.
Use g_node_pop_allocator() to restore the previous allocator.
</para>
+<para>
+Note that this function is not available if GLib has been compiled
+with <option>--disable-mem-pools</option>
+</para>
@allocator: the #GAllocator to use when allocating #GNode elements.
@@ -527,6 +531,10 @@ Use g_node_pop_allocator() to restore the previous allocator.
<para>
Restores the previous #GAllocator, used when allocating #GNode elements.
</para>
+<para>
+Note that this function is not available if GLib has been compiled
+with <option>--disable-mem-pools</option>
+</para>