ReactOS Fundraising Campaign 2012
 
€ 4,410 / € 30,000

Information | Donate

Home | Info | Community | Development | myReactOS | Contact Us

  1. Home
  2. Community
  3. Development
  4. myReactOS
  5. Fundraiser 2012

  1. Main Page
  2. Alphabetical List
  3. Data Structures
  4. Directories
  5. File List
  6. Data Fields
  7. Globals
  8. Related Pages

ReactOS Development > Doxygen

thread.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 doxygen 1.7.6.1

ReactOS is a registered trademark or a trademark of ReactOS Foundation in the United States and other countries.