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
173a3ef
Documentation
LICENSES
arch
alpha
arc
arm
arm64
blackfin
c6x
cris
frv
h8300
hexagon
ia64
configs
dig
hp
include
asm
native
sn
uv
Kbuild
acenv.h
acpi-ext.h
acpi.h
agp.h
asm-offsets.h
asm-prototypes.h
asmmacro.h
atomic.h
barrier.h
bitops.h
bug.h
bugs.h
cache.h
cacheflush.h
checksum.h
clocksource.h
cpu.h
cputime.h
current.h
cyclone.h
delay.h
device.h
div64.h
dma-mapping.h
dma.h
dmi.h
early_ioremap.h
elf.h
emergency-restart.h
esi.h
exception.h
export.h
extable.h
fb.h
fpswa.h
ftrace.h
futex.h
gcc_intrin.h
hardirq.h
hpsim.h
hugetlb.h
hw_irq.h
idle.h
intrinsics.h
io.h
iommu.h
iommu_table.h
iosapic.h
irq.h
irq_regs.h
irq_remapping.h
irqflags.h
kdebug.h
kexec.h
kmap_types.h
kprobes.h
kregs.h
libata-portmap.h
linkage.h
local.h
local64.h
machvec.h
machvec_dig.h
machvec_dig_vtd.h
machvec_hpsim.h
machvec_hpzx1.h
machvec_hpzx1_swiotlb.h
machvec_init.h
machvec_sn2.h
machvec_uv.h
mca.h
mca_asm.h
meminit.h
mman.h
mmu.h
mmu_context.h
mmzone.h
module.h
msidef.h
nodedata.h
numa.h
page.h
pal.h
param.h
parport.h
patch.h
pci.h
percpu.h
perfmon.h
pgalloc.h
pgtable.h
processor.h
ptrace.h
rwsem.h
sal.h
sections.h
segment.h
serial.h
shmparam.h
signal.h
smp.h
sparsemem.h
spinlock.h
spinlock_types.h
string.h
switch_to.h
syscall.h
termios.h
thread_info.h
timex.h
tlb.h
tlbflush.h
topology.h
types.h
uaccess.h
unaligned.h
uncached.h
unistd.h
unwind.h
user.h
ustack.h
vga.h
xor.h
uapi
kernel
lib
mm
oprofile
pci
scripts
sn
uv
Kconfig
Kconfig.debug
Makefile
install.sh
module.lds
m32r
m68k
metag
microblaze
mips
mn10300
nios2
openrisc
parisc
powerpc
riscv
s390
score
sh
sparc
tile
um
unicore32
x86
xtensa
.gitignore
Kconfig
block
certs
crypto
drivers
firmware
fs
include
init
ipc
kernel
lib
mm
net
samples
scripts
security
sound
tools
usr
virt
.cocciconfig
.get_maintainer.ignore
.gitattributes
.gitignore
.mailmap
COPYING
CREDITS
Kbuild
Kconfig
MAINTAINERS
Makefile
README
Breadcrumbs
linux
/
arch
/
ia64
/
include
/
asm
/
bug.h
Blame
Blame
Latest commit
History
History
19 lines (15 loc) · 404 Bytes
Breadcrumbs
linux
/
arch
/
ia64
/
include
/
asm
/
bug.h
Top
File metadata and controls
Code
Blame
19 lines (15 loc) · 404 Bytes
Raw
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef _ASM_IA64_BUG_H #define _ASM_IA64_BUG_H #ifdef CONFIG_BUG #define ia64_abort() __builtin_trap() #define BUG() do { \ printk("kernel BUG at %s:%d!\n", __FILE__, __LINE__); \ barrier_before_unreachable(); \ ia64_abort(); \ } while (0) /* should this BUG be made generic? */ #define HAVE_ARCH_BUG #endif #include <asm-generic/bug.h> #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.