summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsf <sf@13f79535-47bb-0310-9956-ffa450edef68>2012-12-22 22:21:45 +0000
committersf <sf@13f79535-47bb-0310-9956-ffa450edef68>2012-12-22 22:21:45 +0000
commite93ea6e82237375eb74d8972e04e9c55a6d5b2b8 (patch)
tree084799401afb2b7249763c77da4ff37f2cbb8874
parentb790a1fca0cee725ed29b31bd68d7f15252f6a0f (diff)
downloadlibapr-e93ea6e82237375eb74d8972e04e9c55a6d5b2b8.tar.gz
doc fix
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/1.4.x@1425358 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--include/apr_thread_proc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/apr_thread_proc.h b/include/apr_thread_proc.h
index 7df84ef32..0a97c955c 100644
--- a/include/apr_thread_proc.h
+++ b/include/apr_thread_proc.h
@@ -315,7 +315,7 @@ APR_DECLARE(apr_status_t) apr_thread_once(apr_thread_once_t *control,
APR_DECLARE(apr_status_t) apr_thread_detach(apr_thread_t *thd);
/**
- * Return the pool associated with the current thread.
+ * Return user data associated with the current thread.
* @param data The user data associated with the thread.
* @param key The key to associate with the data
* @param thread The currently open thread.
@@ -324,7 +324,7 @@ APR_DECLARE(apr_status_t) apr_thread_data_get(void **data, const char *key,
apr_thread_t *thread);
/**
- * Return the pool associated with the current thread.
+ * Set user data associated with the current thread.
* @param data The user data to associate with the thread.
* @param key The key to use for associating the data with the thread
* @param cleanup The cleanup routine to use when the thread is destroyed.