diff options
Diffstat (limited to 'subversion/libsvn_fs_fs/util.h')
-rw-r--r-- | subversion/libsvn_fs_fs/util.h | 9 |
1 files changed, 2 insertions, 7 deletions
diff --git a/subversion/libsvn_fs_fs/util.h b/subversion/libsvn_fs_fs/util.h index 328dfbcff3fd..2d42f97b114e 100644 --- a/subversion/libsvn_fs_fs/util.h +++ b/subversion/libsvn_fs_fs/util.h @@ -363,12 +363,6 @@ svn_fs_fs__try_stringbuf_from_file(svn_stringbuf_t **content, svn_boolean_t last_attempt, apr_pool_t *pool); -/* Fetch the current offset of FILE into *OFFSET_P. */ -svn_error_t * -svn_fs_fs__get_file_offset(apr_off_t *offset_p, - apr_file_t *file, - apr_pool_t *pool); - /* Read the file FNAME and store the contents in *BUF. Allocations are performed in POOL. */ svn_error_t * @@ -394,11 +388,12 @@ svn_fs_fs__read_number_from_stream(apr_int64_t *result, PERMS_REFERENCE. Temporary allocations are from POOL. This function almost duplicates svn_io_file_move(), but it tries to - guarantee a flush. */ + guarantee a flush if FLUSH_TO_DISK is non-zero. */ svn_error_t * svn_fs_fs__move_into_place(const char *old_filename, const char *new_filename, const char *perms_reference, + svn_boolean_t flush_to_disk, apr_pool_t *pool); /* Return TRUE, iff FS uses logical addressing. */ |