Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_realme_mt6785
/
a3a85a763c399c0bf483a30d82d2d613e6f94cd3
/
.
/
arch
/
x86
/
um
/
asm
/
switch_to.h
blob: cf97d20da61fc256fd499e684c5f422ae890af94 [
file
] [
log
] [
blame
]
#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