You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Garrett Rooney <ro...@electricjellyfish.net> on 2003/12/10 21:47:45 UTC

Re: svn commit: rev 7974 - in branches/issue-1601-dev/subversion: include libsvn_ra_local libsvn_repos mod_dav_svn svnserve tests/libsvn_repos

kfogel@tigris.org wrote:

> Modified: branches/issue-1601-dev/subversion/include/svn_repos.h
> ==============================================================================
> --- branches/issue-1601-dev/subversion/include/svn_repos.h	(original)
> +++ branches/issue-1601-dev/subversion/include/svn_repos.h	Wed Dec 10 15:38:13 2003
> @@ -434,6 +434,21 @@
>  
>  /* Making commits. */
>  
> +/* This specifies whether and how deltification of the previous
> +   revision tree is to be done.  If none, then do no deltification; if
> +   foreground, then perform deltification in the same line of
> +   execution and don't return from the commit until deltification is
> +   completed; if background, then if possible, fork/spawn a separate
> +   deltification process and return from the commit immediately, else
> +   fall back to the foreground behavior. */
> +enum svn_repos_deltify_how
> +{
> +  svn_repos_deltify_none,
> +  svn_repos_deltify_foreground,
> +  svn_repos_deltify_background
> +};
> +
> +

It'd be nice if that was a doxygen comment, so it shows up in the docs...

-garrett

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: svn commit: rev 7974 - in branches/issue-1601-dev/subversion: include libsvn_ra_local libsvn_repos mod_dav_svn svnserve tests/libsvn_repos

Posted by kf...@collab.net.
Garrett Rooney <ro...@electricjellyfish.net> writes:
> It'd be nice if that was a doxygen comment, so it shows up in the docs...

Sorry, my braino, will fix on the branch.

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org