Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
2
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
886ddfb
Documentation
LICENSES
arch
block
certs
crypto
drivers
fs
include
init
ipc
kernel
lib
mm
net
samples
scripts
security
sound
tools
accounting
arch
bootconfig
bpf
build
cgroup
counter
debugging
edid
firewire
firmware
gpio
hv
iio
include
io_uring
kvm
laptop
leds
lib
memory-model
objtool
pci
pcmcia
perf
power
rcu
scripts
spi
testing
cxl
fault-injection
ktest
kunit
nvdimm
radix-tree
scatterlist
selftests
alsa
arm64
bpf
breakpoints
capabilities
cgroup
clone3
core
cpu-hotplug
cpufreq
damon
dma
dmabuf-heaps
drivers
efivarfs
exec
filesystems
firmware
fpu
ftrace
futex
gpio
ia64
intel_pstate
ipc
ir
kcmp
kexec
kmod
kselftest
kvm
landlock
lib
livepatch
lkdtm
locking
media_tests
membarrier
memfd
memory-hotplug
mincore
mount
mount_setattr
move_mount_set_group
mqueue
nci
net
netfilter
nsfs
ntb
openat2
perf_events
pid_namespace
pidfd
powerpc
prctl
proc
pstore
ptp
ptrace
rcutorture
resctrl
rlimits
rseq
.gitignore
Makefile
basic_percpu_ops_test.c
basic_test.c
param_test.c
rseq-abi.h
rseq-arm.h
rseq-arm64.h
rseq-generic-thread-pointer.h
rseq-mips.h
rseq-ppc-thread-pointer.h
rseq-ppc.h
rseq-s390.h
rseq-skip.h
rseq-thread-pointer.h
rseq-x86-thread-pointer.h
rseq-x86.h
rseq.c
rseq.h
run_param_test.sh
settings
rtc
safesetid
sched
seccomp
sgx
sigaltstack
size
sparc64
splice
static_keys
sync
syscall_user_dispatch
sysctl
tc-testing
timens
timers
tmpfs
tpm2
uevent
user
vDSO
vm
watchdog
wireguard
x86
zram
.gitignore
Makefile
gen_kselftest_tar.sh
kselftest.h
kselftest_deps.sh
kselftest_harness.h
kselftest_install.sh
kselftest_module.h
lib.mk
run_kselftest.sh
vsock
thermal
time
tracing
usb
virtio
vm
wmi
Makefile
usr
virt
.clang-format
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
Breadcrumbs
linux
/
tools
/
testing
/
selftests
/
rseq
/
rseq-thread-pointer.h
Blame
Blame
Latest commit
History
History
19 lines (16 loc) · 426 Bytes
Breadcrumbs
linux
/
tools
/
testing
/
selftests
/
rseq
/
rseq-thread-pointer.h
Top
File metadata and controls
Code
Blame
19 lines (16 loc) · 426 Bytes
Raw
/* SPDX-License-Identifier: LGPL-2.1-only OR MIT */ /* * rseq-thread-pointer.h * * (C) Copyright 2021 - Mathieu Desnoyers <mathieu.desnoyers@efficios.com> */ #ifndef _RSEQ_THREAD_POINTER #define _RSEQ_THREAD_POINTER #if defined(__x86_64__) || defined(__i386__) #include "rseq-x86-thread-pointer.h" #elif defined(__PPC__) #include "rseq-ppc-thread-pointer.h" #else #include "rseq-generic-thread-pointer.h" #endif #endif
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
You can’t perform that action at this time.