blob: 62f8aaed4cc9e76109df397ca230322eaad968f3 (
plain)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
#include "cache.h"
#include "strbuf.h"
#include "strvec.h"
#include "trace2.h"
static void get_ancestry_names(struct strvec *names)
{
/*
* NEEDSWORK: We could gather the entire pstree into an array to match
* functionality with compat/win32/trace2_win32_process_info.c.
* To do so, we may want to examine /proc/<pid>/stat. For now, just
* gather the immediate parent name which is readily accessible from
* /proc/$(getppid())/comm.
*/
struct strbuf procfs_path = STRBUF_INIT;
struct strbuf name = STRBUF_INIT;
/* try to use procfs if it's present. */
strbuf_addf(&procfs_path, "/proc/%d/comm", getppid());
if (strbuf_read_file(&name, procfs_path.buf, 0)) {
strbuf_release(&procfs_path);
strbuf_trim_trailing_newline(&name);
strvec_push(names, strbuf_detach(&name, NULL));
}
return;
}
void trace2_collect_process_info(enum trace2_process_info_reason reason)
{
if (!trace2_is_enabled())
return;
if (reason == TRACE2_PROCESS_INFO_EXIT)
/*
* The Windows version of this calls its
* get_peak_memory_info() here. We may want to insert
* similar process-end statistics here in the future.
*/
return;
if (reason == TRACE2_PROCESS_INFO_STARTUP) {
/*
* NEEDSWORK: we could do the entire ptree in an array instead,
* see compat/win32/trace2_win32_process_info.c.
*/
struct strvec names = STRVEC_INIT;
get_ancestry_names(&names);
if (names.nr)
trace2_cmd_ancestry(names.v);
strvec_clear(&names);
}
return;
}
|