/* * COPYRIGHT: See COPYING in the top level directory * PROJECT: ReactOS system libraries * FILE: lib/kernel32/thread/i386/thread.S * PURPOSE: Thread Start Thunks * PROGRAMMER: Alex Ionescu (alex@relsoft.net) */ .globl BaseThreadStartupThunk .globl BaseProcessStartThunk .intel_syntax noprefix BaseThreadStartupThunk: /* Start out fresh */ xor rbp, rbp push rbx /* lpParameter */ push rax /* lpStartAddress */ push 0 /* Return RIP */ jmp BaseThreadStartup BaseProcessStartThunk: /* Start out fresh */ xor rbp, rbp push rax /* lpStartAddress */ push 0 /* Return RIP */ jmp BaseProcessStartup /* EOF */