~ubuntu-branches/ubuntu/trusty/subversion/trusty-proposed

« back to all changes in this revision

Viewing changes to subversion/libsvn_fs_fs/err.h

  • Committer: Package Import Robot
  • Author(s): Andy Whitcroft
  • Date: 2012-06-21 15:36:36 UTC
  • mfrom: (0.4.13 sid)
  • Revision ID: package-import@ubuntu.com-20120621153636-amqqmuidgwgxz1ly
Tags: 1.7.5-1ubuntu1
* Merge from Debian unstable.  Remaining changes:
  - Create pot file on build.
  - Build a python-subversion-dbg package.
  - Build-depend on python-dbg.
  - Build-depend on default-jre-headless/-jdk.
  - Do not apply java-build patch.
  - debian/rules: Manually create the doxygen output directory, otherwise
    we get weird build failures when running parallel builds.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * err.h : interface to routines for returning Berkeley DB errors
3
 
 *
4
 
 * ====================================================================
5
 
 * Copyright (c) 2000-2004 CollabNet.  All rights reserved.
6
 
 *
7
 
 * This software is licensed as described in the file COPYING, which
8
 
 * you should have received as part of this distribution.  The terms
9
 
 * are also available at http://subversion.tigris.org/license-1.html.
10
 
 * If newer versions of this license are posted there, you may use a
11
 
 * newer version instead, at your option.
12
 
 *
13
 
 * This software consists of voluntary contributions made by many
14
 
 * individuals.  For exact contribution history, see the revision
15
 
 * history and logs, available at http://subversion.tigris.org/.
16
 
 * ====================================================================
17
 
 */
18
 
 
19
 
 
20
 
 
21
 
#ifndef SVN_LIBSVN_FS_ERR_H
22
 
#define SVN_LIBSVN_FS_ERR_H
23
 
 
24
 
#include <apr_pools.h>
25
 
 
26
 
#include "svn_error.h"
27
 
#include "svn_fs.h"
28
 
 
29
 
#ifdef __cplusplus
30
 
extern "C" {
31
 
#endif /* __cplusplus */
32
 
 
33
 
 
34
 
 
35
 
/* Building common error objects.  */
36
 
 
37
 
 
38
 
/* SVN_ERR_FS_ID_NOT_FOUND: something in FS refers to node revision
39
 
   ID, but that node revision doesn't exist.  */
40
 
svn_error_t *svn_fs_fs__err_dangling_id(svn_fs_t *fs,
41
 
                                        const svn_fs_id_t *id);
42
 
 
43
 
/* SVN_ERR_FS_CORRUPT: the lockfile for PATH in FS is corrupt.  */
44
 
svn_error_t *svn_fs_fs__err_corrupt_lockfile(svn_fs_t *fs,
45
 
                                             const char *path);
46
 
 
47
 
#ifdef __cplusplus
48
 
}
49
 
#endif /* __cplusplus */
50
 
 
51
 
#endif /* SVN_LIBSVN_FS_ERR_H */