1/* 2 * COPYRIGHT: See COPYING in the top level directory 3 * PROJECT: ReactOS system libraries 4 * FILE: dll/win32/kernel32/client/amd64/fiber.S 5 * PURPOSE: Fiber context switch code for the amd64 architecture 6 * PROGRAMMER: 7 */ 8 9#include <asm.inc> 10 11.code64 12 13PUBLIC BaseFiberStartup 14FUNC BaseFiberStartup 15 .ENDPROLOG 16 UNIMPLEMENTED BaseFiberStartup 17 /* FIXME: TODO */ 18 ret 19 20ENDFUNC 21 22 23PUBLIC SwitchToFiber 24 25FUNC SwitchToFiber 26 .ENDPROLOG 27 UNIMPLEMENTED BaseFiberStartup 28 /* FIXME: TODO */ 29 ret 30ENDFUNC 31 32END 33