mirror of
https://github.com/reactos/reactos.git
synced 2025-03-10 18:24:02 +00:00
17 lines
429 B
ArmAsm
17 lines
429 B
ArmAsm
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* FILE: lib/kernel32/thread/i386/fiber.S
|
|
* PURPOSE: Fiber context switch code for the x86 architecture
|
|
* PROGRAMMERS: Alex Ionescu (alex@relsoft.net)
|
|
* KJK::Hyperion <noog@libero.it>
|
|
*/
|
|
|
|
#include <ndk/asm.h>
|
|
|
|
.globl SwitchToFiber
|
|
.intel_syntax noprefix
|
|
|
|
SwitchToFiber:
|
|
/* FIXME: TODO */
|
|
ret 4
|