reactos/dll/win32/kernel32/thread/amd64/fiber.S

20 lines
410 B
ArmAsm
Raw Normal View History

/*
* 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 <asm.inc>
PUBLIC SwitchToFiber
SwitchToFiber:
/* FIXME: TODO */
ret 4
END