summaryrefslogtreecommitdiff
path: root/cache.h
diff options
context:
space:
mode:
authorKarsten Blees <karsten.blees@gmail.com>2014-06-11 07:56:49 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-06-17 16:37:47 (GMT)
commit5991a55c545bca32fc4f5e69ee58de86563a93fa (patch)
tree08993bea1fc313ea172a5615f1ca74bd9fac7548 /cache.h
parentcb682f8cfe63ecd0da08a526f404d295e51e3ab1 (diff)
downloadgit-5991a55c545bca32fc4f5e69ee58de86563a93fa.zip
git-5991a55c545bca32fc4f5e69ee58de86563a93fa.tar.gz
git-5991a55c545bca32fc4f5e69ee58de86563a93fa.tar.bz2
trace: move trace declarations from cache.h to new trace.h
Also include direct dependencies (strbuf.h and git-compat-util.h for __attribute__) so that trace.h can be used independently of cache.h, e.g. in test programs. Signed-off-by: Karsten Blees <blees@dcon.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'cache.h')
-rw-r--r--cache.h13
1 files changed, 2 insertions, 11 deletions
diff --git a/cache.h b/cache.h
index cbe1935..466f6b3 100644
--- a/cache.h
+++ b/cache.h
@@ -7,6 +7,7 @@
#include "advice.h"
#include "gettext.h"
#include "convert.h"
+#include "trace.h"
#include SHA1_HEADER
#ifndef git_SHA_CTX
@@ -1377,17 +1378,7 @@ extern void *alloc_tag_node(void);
extern void *alloc_object_node(void);
extern void alloc_report(void);
-/* trace.c */
-__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(const char *key);
-__attribute__((format (printf, 2, 3)))
-extern void trace_printf_key(const char *key, const char *fmt, ...);
-extern void trace_strbuf(const char *key, const struct strbuf *buf);
-
+/* pkt-line.c */
void packet_trace_identity(const char *prog);
/* add */