Home
last modified time | relevance | path

Searched refs:ttrace (Results 1 – 1 of 1) sorted by relevance

/openbmc/linux/tools/perf/
H A Dbuiltin-trace.c1287 struct thread_trace *ttrace = zalloc(sizeof(struct thread_trace)); in thread_trace__new() local
1289 if (ttrace) { in thread_trace__new()
1290 ttrace->files.max = -1; in thread_trace__new()
1291 ttrace->syscall_stats = intlist__new(NULL); in thread_trace__new()
1294 return ttrace; in thread_trace__new()
1297 static void thread_trace__free_files(struct thread_trace *ttrace);
1301 struct thread_trace *ttrace = pttrace; in thread_trace__delete() local
1303 if (!ttrace) in thread_trace__delete()
1306 intlist__delete(ttrace->syscall_stats); in thread_trace__delete()
1307 ttrace->syscall_stats = NULL; in thread_trace__delete()
[all …]