diff options
author | Peter Wemm <peter@FreeBSD.org> | 2018-05-08 03:44:38 +0000 |
---|---|---|
committer | Peter Wemm <peter@FreeBSD.org> | 2018-05-08 03:44:38 +0000 |
commit | 3faf8d6bffc5d0fb2525ba37bb504c53366caf9d (patch) | |
tree | 7e47911263e75034b767fe34b2f8d3d17e91f66d /subversion/libsvn_fs_x/tree.h | |
parent | a55fb3c0d5eca7d887798125d5b95942b1f01d4b (diff) |
Notes
Diffstat (limited to 'subversion/libsvn_fs_x/tree.h')
-rw-r--r-- | subversion/libsvn_fs_x/tree.h | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/subversion/libsvn_fs_x/tree.h b/subversion/libsvn_fs_x/tree.h index 9c5d44aba842a..58ad0dadabbb5 100644 --- a/subversion/libsvn_fs_x/tree.h +++ b/subversion/libsvn_fs_x/tree.h @@ -20,10 +20,11 @@ * ==================================================================== */ -#ifndef SVN_LIBSVN_FS_TREE_H -#define SVN_LIBSVN_FS_TREE_H +#ifndef SVN_LIBSVN_FS_X_TREE_H +#define SVN_LIBSVN_FS_X_TREE_H #include "fs.h" +#include "dag.h" #ifdef __cplusplus extern "C" { @@ -31,9 +32,13 @@ extern "C" { -/* In RESULT_POOL, create an instance of a DAG node 1st level cache. */ -svn_fs_x__dag_cache_t* -svn_fs_x__create_dag_cache(apr_pool_t *result_pool); +/* Return the transaction ID to a given transaction ROOT. */ +svn_fs_x__txn_id_t +svn_fs_x__root_txn_id(svn_fs_root_t *root); + +/* Return the change set to a given ROOT. */ +svn_fs_x__change_set_t +svn_fs_x__root_change_set(svn_fs_root_t *root); /* Set *ROOT_P to the root directory of revision REV in filesystem FS. Allocate the structure in POOL. */ @@ -109,4 +114,4 @@ svn_fs_x__info_config_files(apr_array_header_t **files, } #endif /* __cplusplus */ -#endif /* SVN_LIBSVN_FS_TREE_H */ +#endif /* SVN_LIBSVN_FS_X_TREE_H */ |