This website requires JavaScript.
Explore
Help
Sign In
hollalinux
/
linux-sg2042
mirror of
https://github.com/sophgo/linux-riscv.git
Watch
1
Star
0
Fork
You've already forked linux-sg2042
0
Code
Issues
Packages
Projects
Releases
Wiki
Activity
11224e1fc4
linux-sg2042
/
arch
/
cris
/
include
/
uapi
/
asm
/
ptrace.h
6 lines
87 B
C
Raw
Normal View
History
Unescape
Escape
CRIS: UAPI: fix ptrace.h The exported ptrace.h header on CRIS references an "arch" directory which does not exist. Fix this by having the variants in the same directory and including them conditionally, similar to other architectures. Signed-off-by: Rabin Vincent <rabin@rab.in> Signed-off-by: Jesper Nilsson <jesper.nilsson@axis.com>
2015-03-28 05:32:27 +08:00
#
ifdef __arch_v32
#
include
<asm/ptrace_v32.h>
#
else
#
include
<asm/ptrace_v10.h>
#
endif