diff options
author | Josh Steadmon <steadmon@google.com> | 2020-11-11 15:29:26 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-11-11 18:26:52 -0800 |
commit | e97e1cf464fa0c4646d41b9221ae88a7dca12493 (patch) | |
tree | cf99f8a075293f4104d04aef0af582508f7a7a60 | |
parent | docs: new transfer.advertiseSID option (diff) | |
download | tgif-e97e1cf464fa0c4646d41b9221ae88a7dca12493.tar.xz |
trace2: add a public function for getting the SID
Add a public wrapper, trace2_session_id(), around tr2_sid_get(), which
is intended to be private trace2 implementation.
Signed-off-by: Josh Steadmon <steadmon@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | trace2.c | 5 | ||||
-rw-r--r-- | trace2.h | 2 |
2 files changed, 7 insertions, 0 deletions
@@ -792,3 +792,8 @@ void trace2_printf(const char *fmt, ...) va_end(ap); } #endif + +const char *trace2_session_id(void) +{ + return tr2_sid_get(); +} @@ -500,4 +500,6 @@ void trace2_collect_process_info(enum trace2_process_info_reason reason); } while (0) #endif +const char *trace2_session_id(void); + #endif /* TRACE2_H */ |