You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2011/04/03 19:50:00 UTC

svn commit: r1088351 - /subversion/trunk/subversion/include/private/svn_cache.h

Author: stefan2
Date: Sun Apr  3 17:49:59 2011
New Revision: 1088351

URL: http://svn.apache.org/viewvc?rev=1088351&view=rev
Log:
Adapt docstring to latest function signature changes.

* subversion/include/private/svn_cache.h
  (svn_cache__create_inprocess): document id parameter,
   reflect replacement of dup_func

Found by: danielsh

Modified:
    subversion/trunk/subversion/include/private/svn_cache.h

Modified: subversion/trunk/subversion/include/private/svn_cache.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/private/svn_cache.h?rev=1088351&r1=1088350&r2=1088351&view=diff
==============================================================================
--- subversion/trunk/subversion/include/private/svn_cache.h (original)
+++ subversion/trunk/subversion/include/private/svn_cache.h Sun Apr  3 17:49:59 2011
@@ -176,12 +176,16 @@ typedef struct svn_cache__info_t
  * may certainly be 1).
  *
  * If @a thread_safe is true, and APR is compiled with threads, all
- * accesses to the cache will be protected with a mutex.
+ * accesses to the cache will be protected with a mutex. The @a id
+ * is a purely user-visible information that will allow coders to
+ * identify this cache instance in a @ref svn_cache__info_t struct.
+ * It does not influence the behavior of the cache itself.
  *
- * Note that NULL is a legitimate value for cache entries (and @a dup_func
- * will not be called on it).
+ * Note that NULL is a legitimate value for cache entries (and 
+ * @a serialize_func will not be called on it).
  *
- * It is not safe for @a dup_func to interact with the cache itself.
+ * It is not safe for @a serialize_func nor @a deserialize_func to 
+ * interact with the cache itself.
  */
 svn_error_t *
 svn_cache__create_inprocess(svn_cache__t **cache_p,