You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by da...@apache.org on 2011/01/01 20:08:50 UTC

svn commit: r1054272 - /subversion/trunk/subversion/include/svn_error.h

Author: danielsh
Date: Sat Jan  1 19:08:50 2011
New Revision: 1054272

URL: http://svn.apache.org/viewvc?rev=1054272&view=rev
Log:
* subversion/include/svn_error.h:
    Define two doxygen groups.

Modified:
    subversion/trunk/subversion/include/svn_error.h

Modified: subversion/trunk/subversion/include/svn_error.h
URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_error.h?rev=1054272&r1=1054271&r2=1054272&view=diff
==============================================================================
--- subversion/trunk/subversion/include/svn_error.h (original)
+++ subversion/trunk/subversion/include/svn_error.h Sat Jan  1 19:08:50 2011
@@ -361,6 +361,13 @@ svn_error_t *svn_error_purge_tracing(svn
 
 /** @} */
 
+
+/** Error groups
+ *
+ * @defgroup svn_error_error_groups Error groups
+ * @{
+ */
+
 /**
  * Return TRUE if @a err is an error specifically related to locking a
  * path in the repository, FALSE otherwise.
@@ -388,6 +395,15 @@ svn_error_t *svn_error_purge_tracing(svn
    err->apr_err == SVN_ERR_RA_NOT_LOCKED ||                 \
    err->apr_err == SVN_ERR_FS_LOCK_EXPIRED)
 
+/** @} */
+
+
+/** Internal malfunctions and assertions
+ *
+ * @defgroup svn_error_malfunction_assertion Malfunctions and assertions
+ * @{
+ */
+
 /** Report that an internal malfunction has occurred, and possibly terminate
  * the program.
  *
@@ -548,6 +564,8 @@ svn_error_abort_on_malfunction(svn_boole
                                int line,
                                const char *expr);
 
+/** @} */
+
 
 #ifdef __cplusplus
 }