1/* 2 * COPYRIGHT: See COPYING in the top level directory 3 * PROJECT: ReactOS system libraries 4 * FILE: dll/win32/kernel32/client/arm/thread.S 5 * PURPOSE: Thread and process start thunks 6 * PROGRAMMER: 7 */ 8 9#include <ksarm.h> 10 11 IMPORT BaseThreadStartup 12 IMPORT BaseProcessStartup 13 14 TEXTAREA 15 16 LEAF_ENTRY BaseThreadStartupThunk 17 __assertfail 18 bx lr 19 LEAF_END BaseThreadStartupThunk 20 21 LEAF_ENTRY BaseProcessStartThunk 22 __assertfail 23 bx lr 24 LEAF_END BaseProcessStartThunk 25 26 END 27/* EOF */ 28