diff options
author | Karsten Blees <karsten.blees@gmail.com> | 2014-07-12 02:04:29 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2014-07-13 21:25:19 -0700 |
commit | 66f66c596fa2b4e7d4c00575a5731d33ab28d4ed (patch) | |
tree | 4819b72e374af4713bdc1577c8213f1dc743bc24 /trace.h | |
parent | b72be02cfb402bbd6abac07af7231613cd37d594 (diff) | |
download | git-66f66c596fa2b4e7d4c00575a5731d33ab28d4ed.tar.gz |
trace: move code around, in preparation to file:line output
No functional changes, just move stuff around so that the next patch isn't
that ugly...
Signed-off-by: Karsten Blees <blees@dcon.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'trace.h')
-rw-r--r-- | trace.h | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -13,15 +13,19 @@ struct trace_key { #define TRACE_KEY_INIT(name) { "GIT_TRACE_" #name, 0, 0, 0 } -__attribute__((format (printf, 1, 2))) -extern void trace_printf(const char *format, ...); -__attribute__((format (printf, 2, 3))) -extern void trace_argv_printf(const char **argv, const char *format, ...); extern void trace_repo_setup(const char *prefix); extern int trace_want(struct trace_key *key); extern void trace_disable(struct trace_key *key); + +__attribute__((format (printf, 1, 2))) +extern void trace_printf(const char *format, ...); + __attribute__((format (printf, 2, 3))) extern void trace_printf_key(struct trace_key *key, const char *format, ...); + +__attribute__((format (printf, 2, 3))) +extern void trace_argv_printf(const char **argv, const char *format, ...); + extern void trace_strbuf(struct trace_key *key, const struct strbuf *data); #endif /* TRACE_H */ |