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
a3a85a7
Documentation
arch
alpha
arm
avr32
blackfin
c6x
cris
frv
h8300
hexagon
ia64
m32r
m68k
microblaze
mips
mn10300
openrisc
parisc
powerpc
s390
score
sh
sparc
tile
um
unicore32
x86
boot
configs
crypto
ia32
include
kernel
kvm
lguest
lib
math-emu
mm
net
oprofile
pci
platform
power
syscalls
tools
um
asm
apic.h
arch_hweight.h
archparam.h
barrier.h
checksum.h
checksum_32.h
checksum_64.h
desc.h
elf.h
irq_vectors.h
mm_context.h
module.h
processor.h
processor_32.h
processor_64.h
ptrace.h
ptrace_32.h
ptrace_64.h
required-features.h
segment.h
switch_to.h
vm-flags.h
os-Linux
shared
vdso
Kconfig
Makefile
bug.c
bugs_32.c
bugs_64.c
checksum_32.S
delay.c
elfcore.c
fault.c
ksyms.c
ldt.c
mem_32.c
mem_64.c
ptrace_32.c
ptrace_64.c
ptrace_user.c
setjmp_32.S
setjmp_64.S
signal.c
stub_32.S
stub_64.S
stub_segv.c
sys_call_table_32.c
sys_call_table_64.c
syscalls_32.c
syscalls_64.c
sysrq_32.c
sysrq_64.c
tls_32.c
tls_64.c
user-offsets.c
vdso
video
xen
.gitignore
Kbuild
Kconfig
Kconfig.cpu
Kconfig.debug
Makefile
Makefile.um
Makefile_32.cpu
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
/
x86
/
um
/
asm
/
switch_to.h
Blame
Blame
Latest commit
History
History
7 lines (5 loc) · 200 Bytes
Breadcrumbs
linux
/
arch
/
x86
/
um
/
asm
/
switch_to.h
Top
File metadata and controls
Code
Blame
7 lines (5 loc) · 200 Bytes
Raw
#ifndef _ASM_UM_SWITCH_TO_H_ #define _ASM_UM_SWITCH_TO_H_ extern void *_switch_to(void *prev, void *next, void *last); #define switch_to(prev, next, last) prev = _switch_to(prev, next, last) #endif
1
2
3
4
5
6
7
You can’t perform that action at this time.