[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

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

From: Garrett Rooney <rooneg_at_electricjellyfish.net>
Date: 2003-12-10 22:47:45 CET

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
Received on Wed Dec 10 22:48:25 2003

This is an archived mail posted to the Subversion Dev mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.