Home | Info | Community | Development | myReactOS | Contact Us
ReactOS Development > Doxygenpsctx.c
Go to the documentation of this file.
00001 /* 00002 * PROJECT: ReactOS Kernel 00003 * LICENSE: BSD - See COPYING.ARM in the top level directory 00004 * FILE: ntoskrnl/ps/arm/pxctx.c 00005 * PURPOSE: Process Manager: Set/Get Context for ARM 00006 * PROGRAMMERS: ReactOS Portable Systems Group 00007 */ 00008 00009 /* INCLUDES *******************************************************************/ 00010 00011 #include <ntoskrnl.h> 00012 #define NDEBUG 00013 #include <debug.h> 00014 00015 /* FUNCTIONS ******************************************************************/ 00016 00017 VOID 00018 NTAPI 00019 PspGetContext(IN PKTRAP_FRAME TrapFrame, 00020 IN PVOID NonVolatileContext, 00021 IN OUT PCONTEXT Context) 00022 { 00023 PAGED_CODE(); 00024 } 00025 00026 VOID 00027 NTAPI 00028 PspSetContext(OUT PKTRAP_FRAME TrapFrame, 00029 OUT PVOID NonVolatileContext, 00030 IN PCONTEXT Context, 00031 IN KPROCESSOR_MODE Mode) 00032 { 00033 PAGED_CODE(); 00034 } 00035 00036 VOID 00037 NTAPI 00038 PspGetOrSetContextKernelRoutine(IN PKAPC Apc, 00039 IN OUT PKNORMAL_ROUTINE* NormalRoutine, 00040 IN OUT PVOID* NormalContext, 00041 IN OUT PVOID* SystemArgument1, 00042 IN OUT PVOID* SystemArgument2) 00043 { 00044 UNIMPLEMENTED; 00045 } 00046 00047 /* EOF */ Generated on Sun May 27 2012 04:37:40 for ReactOS by
1.7.6.1
|