[CRT/KERNEL32]

Add some more ARM stubs

svn path=/trunk/; revision=67482
This commit is contained in:
Timo Kreuzer 2015-04-30 21:07:08 +00:00
parent 3a25ca3b5c
commit a4df06a55c
3 changed files with 72 additions and 0 deletions

View file

@ -0,0 +1,24 @@
/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
* FILE: dll/win32//kernel32/client/arm/fiber.S
* PURPOSE: Fiber context switch code for the amd64 architecture
* PROGRAMMER:
*/
#include <ksarm.h>
TEXTAREA
LEAF_ENTRY BaseFiberStartup
__assertfail
bx lr
LEAF_END BaseFiberStartup
LEAF_ENTRY SwitchToFiber
__assertfail
bx lr
LEAF_END SwitchToFiber
END
/* EOF */

View file

@ -0,0 +1,27 @@
/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS system libraries
* FILE: lib/kernel32/thread/arm/thread.S
* PURPOSE: Thread and process start thunks
* PROGRAMMER:
*/
#include <ksarm.h>
IMPORT BaseThreadStartup
IMPORT BaseProcessStartup
TEXTAREA
LEAF_ENTRY BaseThreadStartupThunk
__assertfail
bx lr
LEAF_END BaseThreadStartupThunk
LEAF_ENTRY BaseProcessStartThunk
__assertfail
bx lr
LEAF_END BaseProcessStartThunk
END
/* EOF */

View file

@ -0,0 +1,21 @@
/*
* COPYRIGHT: See COPYING in the top level directory
* PROJECT: ReactOS CRT library
* PURPOSE: Implementation of __jmp_unwind
* PROGRAMMER: Timo Kreuzer (timo.kreuzer@reactos.org)
*/
/* INCLUDES ******************************************************************/
#include <kxarm.h>
/* CODE **********************************************************************/
TEXTAREA
LEAF_ENTRY __jmp_unwind
__assertfail
bx lr
LEAF_END __jmp_unwind
END
/* EOF */