summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorstriker <striker@13f79535-47bb-0310-9956-ffa450edef68>2003-03-11 20:02:06 +0000
committerstriker <striker@13f79535-47bb-0310-9956-ffa450edef68>2003-03-11 20:02:06 +0000
commitcdf6bf3c2798d8578315181087d778449f36ebed (patch)
tree0451aa60bb272967d4221fd8736fc7157cdd4669
parent05e42758a6f601af046906913498e6b44d3f6bf8 (diff)
downloadlibapr-cdf6bf3c2798d8578315181087d778449f36ebed.tar.gz
* include/apr_pools.h
Add a comment about the order in which cleanups are run. This has been the case for quite a while, but was never documented. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@64419 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--include/apr_pools.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/apr_pools.h b/include/apr_pools.h
index a08ae8907..a19fe5f1f 100644
--- a/include/apr_pools.h
+++ b/include/apr_pools.h
@@ -529,6 +529,9 @@ APR_DECLARE(apr_status_t) apr_pool_userdata_get(void **data, const char *key,
/*
* Cleanup
+ *
+ * Cleanups are performed in the reverse order they were registered. That is:
+ * Last In, First Out.
*/
/**