Home
last modified time | relevance | path

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

/linux-6.12.1/tools/perf/
Dbuiltin-trace.c1523 struct thread_trace *ttrace = zalloc(sizeof(struct thread_trace)); in thread_trace__new() local
1525 if (ttrace) { in thread_trace__new()
1526 ttrace->files.max = -1; in thread_trace__new()
1527 ttrace->syscall_stats = intlist__new(NULL); in thread_trace__new()
1530 return ttrace; in thread_trace__new()
1533 static void thread_trace__free_files(struct thread_trace *ttrace);
1537 struct thread_trace *ttrace = pttrace; in thread_trace__delete() local
1539 if (!ttrace) in thread_trace__delete()
1542 intlist__delete(ttrace->syscall_stats); in thread_trace__delete()
1543 ttrace->syscall_stats = NULL; in thread_trace__delete()
[all …]