Linux Audio

Check our new training course

Loading...
v4.17
 1// SPDX-License-Identifier: GPL-2.0
 
 2size_t syscall_arg__scnprintf_pid(char *bf, size_t size, struct syscall_arg *arg)
 3{
 4	int pid = arg->val;
 5	struct trace *trace = arg->trace;
 6	size_t printed = scnprintf(bf, size, "%d", pid);
 7	struct thread *thread = machine__findnew_thread(trace->host, pid, pid);
 8
 9	if (thread != NULL) {
10		if (!thread->comm_set)
11			thread__set_comm_from_proc(thread);
12
13		if (thread->comm_set)
14			printed += scnprintf(bf + printed, size - printed,
15					     " (%s)", thread__comm_str(thread));
16		thread__put(thread);
17	}
18
19	return printed;
20}
v6.8
 1// SPDX-License-Identifier: LGPL-2.1
 2
 3size_t syscall_arg__scnprintf_pid(char *bf, size_t size, struct syscall_arg *arg)
 4{
 5	int pid = arg->val;
 6	struct trace *trace = arg->trace;
 7	size_t printed = scnprintf(bf, size, "%d", pid);
 8	struct thread *thread = machine__findnew_thread(trace->host, pid, pid);
 9
10	if (thread != NULL) {
11		if (!thread__comm_set(thread))
12			thread__set_comm_from_proc(thread);
13
14		if (thread__comm_set(thread))
15			printed += scnprintf(bf + printed, size - printed,
16					     " (%s)", thread__comm_str(thread));
17		thread__put(thread);
18	}
19
20	return printed;
21}