treewide: be explicit about dependence on trace.h & trace2.h
Dozens of files made use of trace and trace2 functions, without explicitly including trace.h or trace2.h. This made it more difficult to find which files could remove a dependence on cache.h. Make C files explicitly include trace.h or trace2.h if they are using them. Signed-off-by: Elijah Newren <newren@gmail.com> Acked-by: Calvin Wan <calvinwan@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
e7dca80692
commit
74ea5c9574
1
blame.c
1
blame.c
@ -9,6 +9,7 @@
|
||||
#include "hex.h"
|
||||
#include "setup.h"
|
||||
#include "tag.h"
|
||||
#include "trace2.h"
|
||||
#include "blame.h"
|
||||
#include "alloc.h"
|
||||
#include "commit-slab.h"
|
||||
|
@ -26,6 +26,7 @@
|
||||
#include "setup.h"
|
||||
#include "submodule.h"
|
||||
#include "submodule-config.h"
|
||||
#include "trace2.h"
|
||||
#include "tree.h"
|
||||
#include "tree-walk.h"
|
||||
#include "unpack-trees.h"
|
||||
|
@ -12,6 +12,7 @@
|
||||
#include "progress.h"
|
||||
#include "replace-object.h"
|
||||
#include "tag.h"
|
||||
#include "trace2.h"
|
||||
|
||||
#define BUILTIN_COMMIT_GRAPH_VERIFY_USAGE \
|
||||
N_("git commit-graph verify [--object-dir <dir>] [--shallow] [--[no-]progress]")
|
||||
|
@ -31,6 +31,8 @@
|
||||
#include "promisor-remote.h"
|
||||
#include "commit-graph.h"
|
||||
#include "shallow.h"
|
||||
#include "trace.h"
|
||||
#include "trace2.h"
|
||||
#include "worktree.h"
|
||||
#include "bundle-uri.h"
|
||||
|
||||
|
@ -14,6 +14,7 @@
|
||||
#include "simple-ipc.h"
|
||||
#include "khash.h"
|
||||
#include "pkt-line.h"
|
||||
#include "trace2.h"
|
||||
|
||||
static const char * const builtin_fsmonitor__daemon_usage[] = {
|
||||
N_("git fsmonitor--daemon start [<options>]"),
|
||||
|
@ -37,6 +37,7 @@
|
||||
#include "gettext.h"
|
||||
#include "hook.h"
|
||||
#include "setup.h"
|
||||
#include "trace2.h"
|
||||
#include "wrapper.h"
|
||||
|
||||
#define FAILED_RUN "failed to run %s"
|
||||
|
@ -16,6 +16,7 @@
|
||||
#include "submodule.h"
|
||||
#include "submodule-config.h"
|
||||
#include "send-pack.h"
|
||||
#include "trace2.h"
|
||||
#include "color.h"
|
||||
|
||||
static const char * const push_usage[] = {
|
||||
|
@ -32,6 +32,7 @@
|
||||
#include "sequencer.h"
|
||||
#include "rebase-interactive.h"
|
||||
#include "reset.h"
|
||||
#include "trace2.h"
|
||||
#include "hook.h"
|
||||
#include "wrapper.h"
|
||||
|
||||
|
@ -32,6 +32,8 @@
|
||||
#include "object-store.h"
|
||||
#include "protocol.h"
|
||||
#include "commit-reach.h"
|
||||
#include "trace.h"
|
||||
#include "trace2.h"
|
||||
#include "worktree.h"
|
||||
#include "shallow.h"
|
||||
#include "wrapper.h"
|
||||
|
@ -29,6 +29,8 @@
|
||||
#include "setup.h"
|
||||
#include "submodule.h"
|
||||
#include "submodule-config.h"
|
||||
#include "trace.h"
|
||||
#include "trace2.h"
|
||||
#include "dir.h"
|
||||
#include "add-interactive.h"
|
||||
|
||||
|
@ -11,6 +11,8 @@
|
||||
#include "replace-object.h"
|
||||
#include "promisor-remote.h"
|
||||
#include "sparse-index.h"
|
||||
#include "trace.h"
|
||||
#include "trace2.h"
|
||||
|
||||
#ifndef DEBUG_CACHE_TREE
|
||||
#define DEBUG_CACHE_TREE 0
|
||||
|
2
cache.h
2
cache.h
@ -8,8 +8,6 @@
|
||||
#include "advice.h"
|
||||
#include "gettext.h"
|
||||
#include "convert.h"
|
||||
#include "trace.h"
|
||||
#include "trace2.h"
|
||||
#include "string-list.h"
|
||||
#include "pack-revindex.h"
|
||||
#include "hash.h"
|
||||
|
@ -3,6 +3,7 @@
|
||||
#include "chdir-notify.h"
|
||||
#include "list.h"
|
||||
#include "strbuf.h"
|
||||
#include "trace.h"
|
||||
|
||||
struct chdir_notify_entry {
|
||||
const char *name;
|
||||
|
@ -3,6 +3,7 @@
|
||||
#include "gettext.h"
|
||||
#include "attr.h"
|
||||
#include "setup.h"
|
||||
#include "trace2.h"
|
||||
|
||||
/*
|
||||
* Many parts of Git have subprograms communicate via pipe, expect the
|
||||
|
@ -4,6 +4,7 @@
|
||||
#include "fsm-listen.h"
|
||||
#include "fsmonitor--daemon.h"
|
||||
#include "gettext.h"
|
||||
#include "trace2.h"
|
||||
|
||||
/*
|
||||
* The documentation of ReadDirectoryChangesW() states that the maximum
|
||||
|
@ -12,6 +12,7 @@
|
||||
#include "win32/lazyload.h"
|
||||
#include "../config.h"
|
||||
#include "../environment.h"
|
||||
#include "../trace2.h"
|
||||
#include "../wrapper.h"
|
||||
#include "dir.h"
|
||||
#include "gettext.h"
|
||||
|
@ -4,6 +4,7 @@
|
||||
#include "strbuf.h"
|
||||
#include "pkt-line.h"
|
||||
#include "thread-utils.h"
|
||||
#include "trace2.h"
|
||||
#include "unix-socket.h"
|
||||
#include "unix-stream-server.h"
|
||||
|
||||
|
@ -5,6 +5,8 @@
|
||||
#include "strbuf.h"
|
||||
#include "pkt-line.h"
|
||||
#include "thread-utils.h"
|
||||
#include "trace.h"
|
||||
#include "trace2.h"
|
||||
#include "accctrl.h"
|
||||
#include "aclapi.h"
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
#include "../../cache.h"
|
||||
#include "../../json-writer.h"
|
||||
#include "../../trace2.h"
|
||||
#include "lazyload.h"
|
||||
#include <Psapi.h>
|
||||
#include <tlHelp32.h>
|
||||
|
1
config.c
1
config.c
@ -28,6 +28,7 @@
|
||||
#include "replace-object.h"
|
||||
#include "refs.h"
|
||||
#include "setup.h"
|
||||
#include "trace2.h"
|
||||
#include "worktree.h"
|
||||
#include "wrapper.h"
|
||||
#include "write-or-die.h"
|
||||
|
@ -14,6 +14,7 @@
|
||||
#include "string-list.h"
|
||||
#include "oid-array.h"
|
||||
#include "transport.h"
|
||||
#include "trace2.h"
|
||||
#include "strbuf.h"
|
||||
#include "version.h"
|
||||
#include "protocol.h"
|
||||
|
@ -9,6 +9,7 @@
|
||||
#include "sigchain.h"
|
||||
#include "pkt-line.h"
|
||||
#include "sub-process.h"
|
||||
#include "trace.h"
|
||||
#include "utf8.h"
|
||||
#include "ll-merge.h"
|
||||
#include "wrapper.h"
|
||||
|
@ -13,6 +13,7 @@
|
||||
#include "unpack-trees.h"
|
||||
#include "refs.h"
|
||||
#include "submodule.h"
|
||||
#include "trace.h"
|
||||
#include "dir.h"
|
||||
#include "fsmonitor.h"
|
||||
#include "commit-reach.h"
|
||||
|
1
dir.c
1
dir.c
@ -23,6 +23,7 @@
|
||||
#include "fsmonitor.h"
|
||||
#include "setup.h"
|
||||
#include "submodule-config.h"
|
||||
#include "trace2.h"
|
||||
#include "wrapper.h"
|
||||
|
||||
/*
|
||||
|
@ -24,6 +24,7 @@
|
||||
#include "chdir-notify.h"
|
||||
#include "setup.h"
|
||||
#include "shallow.h"
|
||||
#include "trace.h"
|
||||
#include "wrapper.h"
|
||||
#include "write-or-die.h"
|
||||
|
||||
|
@ -5,6 +5,8 @@
|
||||
#include "gettext.h"
|
||||
#include "quote.h"
|
||||
#include "strvec.h"
|
||||
#include "trace.h"
|
||||
#include "trace2.h"
|
||||
|
||||
#if defined(RUNTIME_PREFIX)
|
||||
|
||||
|
@ -17,6 +17,7 @@
|
||||
#include "remote.h"
|
||||
#include "run-command.h"
|
||||
#include "connect.h"
|
||||
#include "trace2.h"
|
||||
#include "transport.h"
|
||||
#include "version.h"
|
||||
#include "oid-array.h"
|
||||
|
@ -7,6 +7,7 @@
|
||||
#include "fsmonitor-ipc.h"
|
||||
#include "run-command.h"
|
||||
#include "strbuf.h"
|
||||
#include "trace2.h"
|
||||
|
||||
#define INDEX_EXTENSION_VERSION1 (1)
|
||||
#define INDEX_EXTENSION_VERSION2 (2)
|
||||
|
@ -4,6 +4,7 @@
|
||||
#include "cache.h"
|
||||
#include "dir.h"
|
||||
#include "fsmonitor-settings.h"
|
||||
#include "trace.h"
|
||||
|
||||
extern struct trace_key trace_fsmonitor;
|
||||
|
||||
|
2
git.c
2
git.c
@ -9,6 +9,8 @@
|
||||
#include "replace-object.h"
|
||||
#include "setup.h"
|
||||
#include "shallow.h"
|
||||
#include "trace.h"
|
||||
#include "trace2.h"
|
||||
|
||||
#define RUN_SETUP (1<<0)
|
||||
#define RUN_SETUP_GENTLY (1<<1)
|
||||
|
1
http.c
1
http.c
@ -12,6 +12,7 @@
|
||||
#include "version.h"
|
||||
#include "pkt-line.h"
|
||||
#include "gettext.h"
|
||||
#include "trace.h"
|
||||
#include "transport.h"
|
||||
#include "packfile.h"
|
||||
#include "protocol.h"
|
||||
|
@ -37,6 +37,7 @@
|
||||
#include "strmap.h"
|
||||
#include "submodule-config.h"
|
||||
#include "submodule.h"
|
||||
#include "trace2.h"
|
||||
#include "tree.h"
|
||||
#include "unpack-trees.h"
|
||||
#include "xdiff-interface.h"
|
||||
|
@ -9,6 +9,7 @@
|
||||
#include "environment.h"
|
||||
#include "gettext.h"
|
||||
#include "thread-utils.h"
|
||||
#include "trace.h"
|
||||
#include "trace2.h"
|
||||
#include "sparse-index.h"
|
||||
|
||||
|
@ -13,6 +13,7 @@
|
||||
#include "notes.h"
|
||||
#include "notes-merge.h"
|
||||
#include "strbuf.h"
|
||||
#include "trace.h"
|
||||
#include "notes-utils.h"
|
||||
#include "commit-reach.h"
|
||||
#include "wrapper.h"
|
||||
|
@ -15,6 +15,7 @@
|
||||
#include "pack-objects.h"
|
||||
#include "packfile.h"
|
||||
#include "repository.h"
|
||||
#include "trace2.h"
|
||||
#include "object-store.h"
|
||||
#include "list-objects-filter-options.h"
|
||||
#include "midx.h"
|
||||
|
@ -3,6 +3,7 @@
|
||||
#include "pack-revindex.h"
|
||||
#include "object-store.h"
|
||||
#include "packfile.h"
|
||||
#include "trace2.h"
|
||||
#include "config.h"
|
||||
#include "midx.h"
|
||||
|
||||
|
@ -15,6 +15,7 @@
|
||||
#include "commit.h"
|
||||
#include "object.h"
|
||||
#include "tag.h"
|
||||
#include "trace.h"
|
||||
#include "tree-walk.h"
|
||||
#include "tree.h"
|
||||
#include "object-store.h"
|
||||
|
@ -3,6 +3,7 @@
|
||||
#include "gettext.h"
|
||||
#include "hex.h"
|
||||
#include "run-command.h"
|
||||
#include "trace.h"
|
||||
#include "wrapper.h"
|
||||
#include "write-or-die.h"
|
||||
|
||||
|
@ -11,6 +11,7 @@
|
||||
#include "progress.h"
|
||||
#include "thread-utils.h"
|
||||
#include "repository.h"
|
||||
#include "trace2.h"
|
||||
|
||||
/*
|
||||
* Mostly randomly chosen maximum thread counts: we
|
||||
|
@ -13,6 +13,7 @@
|
||||
#include "progress.h"
|
||||
#include "strbuf.h"
|
||||
#include "trace.h"
|
||||
#include "trace2.h"
|
||||
#include "utf8.h"
|
||||
#include "config.h"
|
||||
|
||||
|
@ -4,6 +4,7 @@
|
||||
#include "object-store.h"
|
||||
#include "promisor-remote.h"
|
||||
#include "config.h"
|
||||
#include "trace2.h"
|
||||
#include "transport.h"
|
||||
#include "strvec.h"
|
||||
#include "packfile.h"
|
||||
|
@ -2,6 +2,7 @@
|
||||
#include "config.h"
|
||||
#include "environment.h"
|
||||
#include "protocol.h"
|
||||
#include "trace2.h"
|
||||
|
||||
static enum protocol_version parse_protocol_version(const char *value)
|
||||
{
|
||||
|
@ -23,6 +23,7 @@
|
||||
#include "resolve-undo.h"
|
||||
#include "run-command.h"
|
||||
#include "strbuf.h"
|
||||
#include "trace2.h"
|
||||
#include "varint.h"
|
||||
#include "split-index.h"
|
||||
#include "utf8.h"
|
||||
|
@ -21,6 +21,7 @@
|
||||
#include "setup.h"
|
||||
#include "protocol.h"
|
||||
#include "quote.h"
|
||||
#include "trace2.h"
|
||||
#include "transport.h"
|
||||
#include "write-or-die.h"
|
||||
|
||||
|
@ -14,6 +14,7 @@
|
||||
#include "setup.h"
|
||||
#include "submodule-config.h"
|
||||
#include "sparse-index.h"
|
||||
#include "trace2.h"
|
||||
#include "promisor-remote.h"
|
||||
|
||||
/* The main repository */
|
||||
|
@ -31,6 +31,7 @@
|
||||
#include "worktree.h"
|
||||
#include "setup.h"
|
||||
#include "strvec.h"
|
||||
#include "trace2.h"
|
||||
#include "commit-reach.h"
|
||||
#include "commit-graph.h"
|
||||
#include "prio-queue.h"
|
||||
|
@ -8,6 +8,8 @@
|
||||
#include "thread-utils.h"
|
||||
#include "strbuf.h"
|
||||
#include "string-list.h"
|
||||
#include "trace.h"
|
||||
#include "trace2.h"
|
||||
#include "quote.h"
|
||||
#include "config.h"
|
||||
#include "packfile.h"
|
||||
|
1
scalar.c
1
scalar.c
@ -16,6 +16,7 @@
|
||||
#include "packfile.h"
|
||||
#include "help.h"
|
||||
#include "setup.h"
|
||||
#include "trace2.h"
|
||||
|
||||
static void setup_enlistment_directory(int argc, const char **argv,
|
||||
const char * const *usagestr,
|
||||
|
1
setup.c
1
setup.c
@ -10,6 +10,7 @@
|
||||
#include "chdir-notify.h"
|
||||
#include "promisor-remote.h"
|
||||
#include "quote.h"
|
||||
#include "trace2.h"
|
||||
|
||||
static int inside_git_dir = -1;
|
||||
static int inside_work_tree = -1;
|
||||
|
@ -17,6 +17,7 @@
|
||||
#include "list-objects.h"
|
||||
#include "commit-reach.h"
|
||||
#include "shallow.h"
|
||||
#include "trace.h"
|
||||
#include "wrapper.h"
|
||||
|
||||
void set_alternate_shallow_file(struct repository *r, const char *path, int override)
|
||||
|
@ -28,6 +28,7 @@
|
||||
#include "commit-reach.h"
|
||||
#include "setup.h"
|
||||
#include "shallow.h"
|
||||
#include "trace2.h"
|
||||
|
||||
static int config_update_recurse_submodules = RECURSE_SUBMODULES_OFF;
|
||||
static int initialized_fetch_ref_tips;
|
||||
|
@ -1,6 +1,7 @@
|
||||
#include "test-tool.h"
|
||||
#include "cache.h"
|
||||
#include "date.h"
|
||||
#include "trace.h"
|
||||
|
||||
static const char *usage_msg = "\n"
|
||||
" test-tool date relative [time_t]...\n"
|
||||
|
@ -4,6 +4,7 @@
|
||||
#include "environment.h"
|
||||
#include "parse-options.h"
|
||||
#include "setup.h"
|
||||
#include "trace.h"
|
||||
|
||||
static int single;
|
||||
static int multi;
|
||||
|
@ -4,6 +4,7 @@
|
||||
#include "environment.h"
|
||||
#include "setup.h"
|
||||
#include "string-list.h"
|
||||
#include "trace.h"
|
||||
#include "utf8.h"
|
||||
|
||||
/*
|
||||
|
1
trace.c
1
trace.c
@ -26,6 +26,7 @@
|
||||
#include "environment.h"
|
||||
#include "quote.h"
|
||||
#include "setup.h"
|
||||
#include "trace.h"
|
||||
#include "wrapper.h"
|
||||
|
||||
struct trace_key trace_default_key = { "GIT_TRACE", 0, 0, 0 };
|
||||
|
1
trace2.c
1
trace2.c
@ -7,6 +7,7 @@
|
||||
#include "thread-utils.h"
|
||||
#include "version.h"
|
||||
#include "trace.h"
|
||||
#include "trace2.h"
|
||||
#include "trace2/tr2_cfg.h"
|
||||
#include "trace2/tr2_cmd_name.h"
|
||||
#include "trace2/tr2_ctr.h"
|
||||
|
@ -22,6 +22,7 @@
|
||||
#include "string-list.h"
|
||||
#include "oid-array.h"
|
||||
#include "sigchain.h"
|
||||
#include "trace2.h"
|
||||
#include "transport-internal.h"
|
||||
#include "protocol.h"
|
||||
#include "object-store.h"
|
||||
|
@ -5,6 +5,7 @@
|
||||
#include "gettext.h"
|
||||
#include "hex.h"
|
||||
#include "object-store.h"
|
||||
#include "trace2.h"
|
||||
#include "tree.h"
|
||||
#include "pathspec.h"
|
||||
#include "json-writer.h"
|
||||
|
@ -17,6 +17,7 @@
|
||||
#include "sparse-index.h"
|
||||
#include "submodule.h"
|
||||
#include "submodule-config.h"
|
||||
#include "trace2.h"
|
||||
#include "fsmonitor.h"
|
||||
#include "object-store.h"
|
||||
#include "promisor-remote.h"
|
||||
|
@ -22,6 +22,7 @@
|
||||
#include "version.h"
|
||||
#include "string-list.h"
|
||||
#include "strvec.h"
|
||||
#include "trace2.h"
|
||||
#include "prio-queue.h"
|
||||
#include "protocol.h"
|
||||
#include "quote.h"
|
||||
|
@ -5,6 +5,7 @@
|
||||
#include "abspath.h"
|
||||
#include "config.h"
|
||||
#include "gettext.h"
|
||||
#include "trace2.h"
|
||||
#include "wrapper.h"
|
||||
|
||||
static intmax_t count_fsync_writeout_only;
|
||||
|
@ -18,6 +18,8 @@
|
||||
#include "column.h"
|
||||
#include "setup.h"
|
||||
#include "strbuf.h"
|
||||
#include "trace.h"
|
||||
#include "trace2.h"
|
||||
#include "utf8.h"
|
||||
#include "worktree.h"
|
||||
#include "lockfile.h"
|
||||
|
Loading…
Reference in New Issue
Block a user