Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenthread.c
Go to the documentation of this file.
00001 /* 00002 * COPYRIGHT: See COPYING in the top level directory 00003 * PROJECT: ReactOS system libraries 00004 * PURPOSE: Rtl user thread functions 00005 * FILE: lib/rtl/thread.c 00006 * PROGRAMERS: 00007 * Alex Ionescu (alex@relsoft.net) 00008 * Eric Kohl 00009 * KJK::Hyperion 00010 */ 00011 00012 /* INCLUDES *****************************************************************/ 00013 00014 #include <rtl.h> 00015 #include "i386/ketypes.h" 00016 00017 #define NDEBUG 00018 #include <debug.h> 00019 00020 /* PRIVATE FUNCTIONS *******************************************************/ 00021 00022 /* 00023 * @implemented 00024 */ 00025 VOID 00026 NTAPI 00027 RtlInitializeContext(IN HANDLE ProcessHandle, 00028 OUT PCONTEXT ThreadContext, 00029 IN PVOID ThreadStartParam OPTIONAL, 00030 IN PTHREAD_START_ROUTINE ThreadStartAddress, 00031 IN PINITIAL_TEB InitialTeb) 00032 { 00033 DPRINT("RtlInitializeContext: (hProcess: %p, ThreadContext: %p, Teb: %p\n", 00034 ProcessHandle, ThreadContext, InitialTeb); 00035 // XXX arty fixme 00036 } 00037 00038 /* EOF */ Generated on Sun May 27 2012 04:24:31 for ReactOS by
1.7.6.1
|