Symbol: __NR_gettid
include/uapi/asm-generic/unistd.h
474
__SYSCALL(__NR_gettid, sys_gettid)
samples/bpf/map_perf_test_user.c
266
syscall(__NR_gettid);
tools/arch/x86/include/uapi/asm/unistd_32.h
17
#ifndef __NR_gettid
tools/arch/x86/include/uapi/asm/unistd_64.h
17
#ifndef __NR_gettid
tools/include/nolibc/sys.h
536
return __nolibc_syscall0(__NR_gettid);
tools/include/uapi/asm-generic/unistd.h
474
__SYSCALL(__NR_gettid, sys_gettid)
tools/perf/bench/sched-pipe.c
127
pid = syscall(__NR_gettid);
tools/perf/bench/sched-seccomp-notify.c
108
listener = user_notif_syscall(__NR_gettid,
tools/perf/bench/sched-seccomp-notify.c
120
ret = syscall(__NR_gettid);
tools/perf/bench/sched-seccomp-notify.c
79
if (req.data.nr != __NR_gettid)
tools/perf/builtin-record.c
215
return (pid_t)syscall(__NR_gettid);
tools/perf/jvmti/jvmti_agent.c
51
return (pid_t)syscall(__NR_gettid);
tools/testing/selftests/bpf/prog_tests/map_ops.c
38
(void)syscall(__NR_gettid);
tools/testing/selftests/bpf/prog_tests/perf_skip.c
90
owner.pid = syscall(__NR_gettid);
tools/testing/selftests/kvm/demand_paging_test.c
60
pid_t tid = syscall(__NR_gettid);
tools/testing/selftests/landlock/wrappers.h
46
return syscall(__NR_gettid);
tools/testing/selftests/perf_events/sigtrap_threads.c
84
__atomic_fetch_sub(&ctx.tids_want_signal, syscall(__NR_gettid), __ATOMIC_RELAXED);
tools/testing/selftests/perf_events/sigtrap_threads.c
90
pid_t tid = syscall(__NR_gettid);
tools/testing/selftests/powerpc/benchmarks/null_syscall.c
125
syscall(__NR_gettid);
tools/testing/selftests/ptrace/get_syscall_info.c
57
__NR_gettid,
tools/testing/selftests/ptrace/set_syscall_info.c
154
__NR_gettid,
tools/testing/selftests/ptrace/set_syscall_info.c
242
__NR_gettid,
tools/testing/selftests/ptrace/set_syscall_info.c
284
__NR_gettid,
tools/testing/selftests/rseq/param_test.c
23
return syscall(__NR_gettid);
tools/testing/selftests/seccomp/seccomp_bpf.c
2035
EXPECT_EQ(__NR_gettid, get_syscall(_metadata, tracee));
tools/testing/selftests/seccomp/seccomp_bpf.c
2115
case __NR_gettid:
tools/testing/selftests/seccomp/seccomp_bpf.c
2156
BPF_JUMP(BPF_JMP|BPF_JEQ|BPF_K, __NR_gettid, 0, 1),
tools/testing/selftests/seccomp/seccomp_bpf.c
2171
self->mytid = syscall(__NR_gettid);
tools/testing/selftests/seccomp/seccomp_bpf.c
2253
EXPECT_SYSCALL_RETURN(45000, syscall(__NR_gettid));
tools/testing/selftests/seccomp/seccomp_bpf.c
2649
me->system_tid = syscall(__NR_gettid);
tools/testing/selftests/seccomp/seccomp_bpf.c
3585
listener = user_notif_syscall(__NR_gettid,
tools/testing/selftests/seccomp/seccomp_bpf.c
3605
ret = syscall(__NR_gettid);
tools/tracing/latency/latency-collector.c
1049
return (pid_t) syscall(__NR_gettid);