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
d762f43
Documentation
arch
alpha
arm
avr32
blackfin
cris
frv
h8300
ia64
m32r
m68k
microblaze
mips
mn10300
parisc
powerpc
s390
score
sh
boards
boot
cchips
configs
drivers
include
asm
Kbuild
adc.h
addrspace.h
alignment.h
asm-offsets.h
atomic-grb.h
atomic-irq.h
atomic-llsc.h
atomic.h
auxvec.h
bitops-grb.h
bitops-llsc.h
bitops-op32.h
bitops.h
bitsperlong.h
bug.h
bugs.h
byteorder.h
cache.h
cachectl.h
cacheflush.h
checksum.h
checksum_32.h
clkdev.h
clock.h
cmpxchg-grb.h
cmpxchg-irq.h
cmpxchg-llsc.h
cpu-features.h
cputime.h
current.h
delay.h
device.h
div64.h
dma-mapping.h
dma-register.h
dma-sh.h
dma.h
dmabrg.h
dwarf.h
elf.h
emergency-restart.h
entry-macros.S
errno.h
fb.h
fcntl.h
fixmap.h
flat.h
fpu.h
freq.h
ftrace.h
futex-irq.h
futex.h
gpio.h
hardirq.h
hd64461.h
heartbeat.h
hugetlb.h
hw_breakpoint.h
hw_irq.h
hwblk.h
i2c-sh7760.h
io.h
io_generic.h
io_trapped.h
ioctl.h
ioctls.h
ipcbuf.h
irq.h
irq_regs.h
irqflags.h
kdebug.h
kexec.h
kgdb.h
kmap_types.h
kprobes.h
linkage.h
local.h
local64.h
machvec.h
mc146818rtc.h
memblock.h
mman.h
mmu.h
mmu_context.h
mmu_context_32.h
mmu_context_64.h
mmzone.h
module.h
msgbuf.h
mutex-llsc.h
mutex.h
page.h
param.h
parport.h
pci.h
percpu.h
perf_event.h
pgalloc.h
pgtable-2level.h
pgtable-3level.h
pgtable.h
pgtable_32.h
pgtable_64.h
poll.h
posix_types.h
posix_types_32.h
posix_types_64.h
processor.h
processor_32.h
processor_64.h
ptrace.h
ptrace_32.h
ptrace_64.h
push-switch.h
reboot.h
resource.h
romimage-macros.h
rtc.h
rwsem.h
scatterlist.h
seccomp.h
sections.h
segment.h
sembuf.h
serial.h
setup.h
sfp-machine.h
sh7760fb.h
sh_bios.h
sh_eth.h
shmbuf.h
shmparam.h
sigcontext.h
siginfo.h
signal.h
siu.h
sizes.h
smc37c93x.h
smp-ops.h
smp.h
socket.h
sockios.h
sparsemem.h
spi.h
spinlock.h
spinlock_types.h
sram.h
stacktrace.h
stat.h
statfs.h
string.h
string_32.h
string_64.h
suspend.h
swab.h
syscall.h
syscall_32.h
syscall_64.h
syscalls.h
syscalls_32.h
syscalls_64.h
system.h
system_32.h
system_64.h
termbits.h
termios.h
thread_info.h
timex.h
tlb.h
tlb_64.h
tlbflush.h
topology.h
types.h
uaccess.h
uaccess_32.h
uaccess_64.h
ucontext.h
unaligned-sh4a.h
unaligned.h
uncached.h
unistd.h
unistd_32.h
unistd_64.h
unwinder.h
user.h
vga.h
vmlinux.lds.h
watchdog.h
xor.h
cpu-common
cpu-sh2
cpu-sh2a
cpu-sh3
cpu-sh4
cpu-sh5
mach-common
mach-dreamcast
mach-ecovec24
mach-kfr2r09
mach-landisk
mach-migor
mach-sdk7786
mach-se
mach-sh03
mach-x3proto
kernel
lib
lib64
math-emu
mm
oprofile
tools
Kconfig
Kconfig.cpu
Kconfig.debug
Makefile
sparc
tile
um
unicore32
x86
xtensa
.gitignore
Kconfig
block
crypto
drivers
firmware
fs
include
init
ipc
kernel
lib
mm
net
samples
scripts
security
sound
tools
usr
virt
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
REPORTING-BUGS
Breadcrumbs
linux
/
arch
/
sh
/
include
/
asm
/
stacktrace.h
Blame
Blame
Latest commit
History
History
22 lines (18 loc) · 567 Bytes
Breadcrumbs
linux
/
arch
/
sh
/
include
/
asm
/
stacktrace.h
Top
File metadata and controls
Code
Blame
22 lines (18 loc) · 567 Bytes
Raw
/* * Copyright (C) 2009 Matt Fleming * * Based on: * The x86 implementation - arch/x86/include/asm/stacktrace.h */ #ifndef _ASM_SH_STACKTRACE_H #define _ASM_SH_STACKTRACE_H /* Generic stack tracer with callbacks */ struct stacktrace_ops { void (*address)(void *data, unsigned long address, int reliable); /* On negative return stop dumping */ int (*stack)(void *data, char *name); }; void dump_trace(struct task_struct *tsk, struct pt_regs *regs, unsigned long *stack, const struct stacktrace_ops *ops, void *data); #endif /* _ASM_SH_STACKTRACE_H */
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
You can’t perform that action at this time.