003 File Manager
Current Path:
/usr/src/contrib/subversion/subversion/include/private
usr
/
src
/
contrib
/
subversion
/
subversion
/
include
/
private
/
📁
..
📄
README
(241 B)
📄
ra_svn_sasl.h
(2.63 KB)
📄
ra_svn_wrapped_sasl.h
(3.89 KB)
📄
svn_adler32.h
(1.47 KB)
📄
svn_atomic.h
(4.83 KB)
📄
svn_auth_private.h
(11.32 KB)
📄
svn_branch.h
(22.98 KB)
📄
svn_branch_compat.h
(10.78 KB)
📄
svn_branch_impl.h
(5.67 KB)
📄
svn_branch_nested.h
(7.55 KB)
📄
svn_branch_repos.h
(3.47 KB)
📄
svn_cache.h
(22.67 KB)
📄
svn_cert.h
(2.27 KB)
📄
svn_client_mtcc.h
(7.8 KB)
📄
svn_client_private.h
(22.85 KB)
📄
svn_client_shelf.h
(16.26 KB)
📄
svn_client_shelf2.h
(15.27 KB)
📄
svn_cmdline_private.h
(10.52 KB)
📄
svn_config_private.h
(4.26 KB)
📄
svn_dav_protocol.h
(2.56 KB)
📄
svn_debug.h
(3.35 KB)
📄
svn_delta_private.h
(4.91 KB)
📄
svn_dep_compat.h
(6.64 KB)
📄
svn_diff_private.h
(6 KB)
📄
svn_diff_tree.h
(14.32 KB)
📄
svn_dirent_uri_private.h
(1.85 KB)
📄
svn_doxygen.h
(1.27 KB)
📄
svn_editor.h
(43.09 KB)
📄
svn_element.h
(12.83 KB)
📄
svn_eol_private.h
(3.18 KB)
📄
svn_error_private.h
(1.67 KB)
📄
svn_fs_fs_private.h
(11.08 KB)
📄
svn_fs_private.h
(8.36 KB)
📄
svn_fs_util.h
(11.11 KB)
📄
svn_fspath.h
(5.36 KB)
📄
svn_io_private.h
(6.47 KB)
📄
svn_log.h
(6.96 KB)
📄
svn_magic.h
(2.36 KB)
📄
svn_mergeinfo_private.h
(12.71 KB)
📄
svn_mutex.h
(4.3 KB)
📄
svn_object_pool.h
(4.53 KB)
📄
svn_opt_private.h
(5.73 KB)
📄
svn_packed_data.h
(9.39 KB)
📄
svn_ra_private.h
(12.07 KB)
📄
svn_ra_svn_private.h
(38.63 KB)
📄
svn_repos_private.h
(15.45 KB)
📄
svn_skel.h
(8.46 KB)
📄
svn_sorts_private.h
(7.66 KB)
📄
svn_sqlite.h
(23.22 KB)
📄
svn_string_private.h
(11.05 KB)
📄
svn_subr_private.h
(24.43 KB)
📄
svn_temp_serializer.h
(8.75 KB)
📄
svn_token.h
(3.11 KB)
📄
svn_utf_private.h
(11.18 KB)
📄
svn_wc_private.h
(93.26 KB)
Editing: svn_debug.h
/* svn_debug.h : handy little debug tools for the SVN developers * * ==================================================================== * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, * software distributed under the License is distributed on an * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY * KIND, either express or implied. See the License for the * specific language governing permissions and limitations * under the License. * ==================================================================== */ #ifndef SVN_DEBUG_H #define SVN_DEBUG_H #ifdef SVN_DEBUG #define SVN_DBG__PROTOTYPES #endif #ifdef SVN_DBG__PROTOTYPES #define APR_WANT_STDIO #include <apr_want.h> #include <apr_hash.h> #endif #ifdef __cplusplus extern "C" { #endif /* __cplusplus */ #ifdef SVN_DBG__PROTOTYPES /* A few helper functions for the macros below. */ void svn_dbg__preamble(const char *file, long line, FILE *output); void svn_dbg__printf(const char *fmt, ...) __attribute__((format(printf, 1, 2))); void svn_dbg__print_props(apr_hash_t *props, const char *header_fmt, ...) __attribute__((format(printf, 2, 3))); #endif /* Only available when SVN_DEBUG is defined (ie. svn developers). Note that we do *not* provide replacement macros/functions for proper releases. The debug stuff should be removed before a commit. ### maybe we will eventually decide to allow certain debug stuff to ### remain in the code. at that point, we can rejigger this header. */ #ifdef SVN_DEBUG /* Print to stdout. Edit this line if you need stderr. */ #define SVN_DBG_OUTPUT stdout /* Defining this symbol in the source file, BEFORE INCLUDING THIS HEADER, will switch off the output. Calls will still be made to svn_dbg__preamble() for breakpoints. */ #ifdef SVN_DBG_QUIET #define SVN_DBG(ARGS) svn_dbg__preamble(__FILE__, __LINE__, NULL) #define SVN_DBG_PROPS(ARGS) svn_dbg__preamble(__FILE__, __LINE__, NULL) #else /** Debug aid macro that prints the file:line of the call and printf-like * arguments to the #SVN_DBG_OUTPUT stdio stream (#stdout by default). Typical * usage: * * <pre> * SVN_DBG(("rev=%ld kind=%s\n", revnum, svn_node_kind_to_word(kind))); * </pre> * * outputs: * * <pre> * DBG: kitchensink.c: 42: rev=3141592 kind=file * </pre> * * Note that these output lines are filtered by our test suite automatically, * so you don't have to worry about throwing off expected output. */ #define SVN_DBG(ARGS) (svn_dbg__preamble(__FILE__, __LINE__, SVN_DBG_OUTPUT), \ svn_dbg__printf ARGS) #define SVN_DBG_PROPS(ARGS) (svn_dbg__preamble(__FILE__, __LINE__, \ SVN_DBG_OUTPUT), \ svn_dbg__print_props ARGS) #endif #endif /* SVN_DEBUG */ #ifdef __cplusplus } #endif /* __cplusplus */ #endif /* SVN_DEBUG_H */
Upload File
Create Folder