mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 05:43:30 +00:00
527f2f9057
* Create a branch for some evul shell experiments. svn path=/branches/shell-experiments/; revision=61927
32 lines
545 B
ArmAsm
32 lines
545 B
ArmAsm
/*
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
* PROJECT: ReactOS system libraries
|
|
* FILE: dll/win32//kernel32/client/amd64/fiber.S
|
|
* PURPOSE: Fiber context switch code for the amd64 architecture
|
|
* PROGRAMMER:
|
|
*/
|
|
|
|
#include <asm.inc>
|
|
|
|
.code64
|
|
|
|
PUBLIC BaseFiberStartup
|
|
FUNC BaseFiberStartup
|
|
.ENDPROLOG
|
|
UNIMPLEMENTED BaseFiberStartup
|
|
/* FIXME: TODO */
|
|
ret
|
|
|
|
ENDFUNC
|
|
|
|
|
|
PUBLIC SwitchToFiber
|
|
|
|
FUNC SwitchToFiber
|
|
.ENDPROLOG
|
|
UNIMPLEMENTED BaseFiberStartup
|
|
/* FIXME: TODO */
|
|
ret
|
|
ENDFUNC
|
|
|
|
END
|