Return-Path: X-Original-To: apmail-subversion-commits-archive@minotaur.apache.org Delivered-To: apmail-subversion-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 557B1E3DF for ; Mon, 28 Jan 2013 00:30:29 +0000 (UTC) Received: (qmail 23654 invoked by uid 500); 28 Jan 2013 00:30:29 -0000 Delivered-To: apmail-subversion-commits-archive@subversion.apache.org Received: (qmail 23635 invoked by uid 500); 28 Jan 2013 00:30:29 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 23628 invoked by uid 99); 28 Jan 2013 00:30:29 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Jan 2013 00:30:29 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 28 Jan 2013 00:30:27 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 2E4852388847; Mon, 28 Jan 2013 00:30:07 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1439214 - /subversion/trunk/subversion/include/svn_fs.h Date: Mon, 28 Jan 2013 00:30:07 -0000 To: commits@subversion.apache.org From: stefan2@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20130128003007.2E4852388847@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: stefan2 Date: Mon Jan 28 00:30:06 2013 New Revision: 1439214 URL: http://svn.apache.org/viewvc?rev=1439214&view=rev Log: * subversion/include/svn_fs.h (svn_fs_verify, svn_fs_verify_rev): make their relationship clear in the docstrings Modified: subversion/trunk/subversion/include/svn_fs.h Modified: subversion/trunk/subversion/include/svn_fs.h URL: http://svn.apache.org/viewvc/subversion/trunk/subversion/include/svn_fs.h?rev=1439214&r1=1439213&r2=1439214&view=diff ============================================================================== --- subversion/trunk/subversion/include/svn_fs.h (original) +++ subversion/trunk/subversion/include/svn_fs.h Mon Jan 28 00:30:06 2013 @@ -300,6 +300,13 @@ typedef void (*svn_fs_progress_notify_fu * svn_repos_verify_fs2() instead, which does non-backend-specific * verifications as well. * + * @note To ensure a full verification using all tests and covering all + * revisions, you must call this function *and* #svn_fs_verify_rev. + * + * @note Implementors, please do tests that can be done efficiently for + * a single revision to #svn_fs_verify_rev. This function is meant for + * global checks or tests that require an expensive context setup. + * * @since New in 1.8. */ svn_error_t * @@ -321,6 +328,13 @@ svn_fs_verify(const char *path, * svn_repos_verify_fs2() instead, which does non-backend-specific * verifications as well. * +* @note To ensure a full verification using all tests and covering all + * revisions, you must call this function *and* #svn_fs_verify. + * + * @note Implementors, please do tests that cannot be done efficiently for + * a single revision to #svn_fs_verify. This function is meant for local + * checks that don't require an expensive context setup. + * * @since New in 1.8. */ svn_error_t *