5 * The Trace2 settings that can be loaded from /etc/gitconfig
6 * and/or user environment variables.
8 * Note that this set does not contain any of the transient
9 * environment variables used to pass information from parent
10 * to child git processes, such "GIT_TRACE2_PARENT_SID".
12 enum tr2_sysenv_variable {
13 TR2_SYSENV_CFG_PARAM = 0,
19 TR2_SYSENV_NORMAL_BRIEF,
22 TR2_SYSENV_EVENT_BRIEF,
23 TR2_SYSENV_EVENT_NESTING,
26 TR2_SYSENV_PERF_BRIEF,
30 TR2_SYSENV_MUST_BE_LAST
33 void tr2_sysenv_load(void);
35 const char *tr2_sysenv_get(enum tr2_sysenv_variable);
36 const char *tr2_sysenv_display_name(enum tr2_sysenv_variable var);
37 void tr2_sysenv_release(void);
39 #endif /* TR2_SYSENV_H */