git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
blob dd09a9541c3296105abafa4c74c047361bb3af84 955 bytes (raw)
name: trace2/tr2_dst.h 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
 
#ifndef TR2_DST_H
#define TR2_DST_H

struct strbuf;
#include "trace2/tr2_sysenv.h"

typedef void(tr2_dst_overload_writer_t)(const char *file, int line, const char *dir);

struct tr2_dst {
	enum tr2_sysenv_variable sysenv_var;
	int fd;
	unsigned int initialized : 1;
	unsigned int need_close : 1;
	tr2_dst_overload_writer_t *overload_writer;
};

/*
 * Disable TRACE2 on the destination.  In TRACE2 a destination (DST)
 * wraps a file descriptor; it is associated with a TARGET which
 * defines the formatting.
 */
void tr2_dst_trace_disable(struct tr2_dst *dst);

/*
 * Return the file descriptor for the DST.
 * If 0, the dst is closed or disabled.
 */
int tr2_dst_get_trace_fd(struct tr2_dst *dst);

/*
 * Return true if the DST is opened for writing.
 */
int tr2_dst_trace_want(struct tr2_dst *dst);

/*
 * Write a single line/message to the trace file.
 */
void tr2_dst_write_line(struct tr2_dst *dst, struct strbuf *buf_line);

#endif /* TR2_DST_H */

debug log:

solving dd09a9541c ...
found dd09a9541c in https://public-inbox.org/git/bab45cb735ad658e6c838a9b2bdb9a8c74b9d179.1568419818.git.steadmon@google.com/
found 3adf3bac13 in https://80x24.org/mirrors/git.git
preparing index
index prepared:
100644 3adf3bac139b1aa910b4aea0dc71e3b03ce722ed	trace2/tr2_dst.h

applying [1/1] https://public-inbox.org/git/bab45cb735ad658e6c838a9b2bdb9a8c74b9d179.1568419818.git.steadmon@google.com/
diff --git a/trace2/tr2_dst.h b/trace2/tr2_dst.h
index 3adf3bac13..dd09a9541c 100644

Checking patch trace2/tr2_dst.h...
Applied patch trace2/tr2_dst.h cleanly.

index at:
100644 dd09a9541c3296105abafa4c74c047361bb3af84	trace2/tr2_dst.h

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).