1 /* 2 * PROJECT: ReactOS Kernel 3 * LICENSE: BSD - See COPYING.ARM in the top level directory 4 * FILE: ntoskrnl/ps/arm/psctx.c 5 * PURPOSE: Process Manager: Set/Get Context for ARM 6 * PROGRAMMERS: ReactOS Portable Systems Group 7 */ 8 9 /* INCLUDES *******************************************************************/ 10 11 #include <ntoskrnl.h> 12 #define NDEBUG 13 #include <debug.h> 14 15 /* FUNCTIONS ******************************************************************/ 16 17 VOID 18 NTAPI 19 PspGetContext(IN PKTRAP_FRAME TrapFrame, 20 IN PVOID NonVolatileContext, 21 IN OUT PCONTEXT Context) 22 { 23 PAGED_CODE(); 24 } 25 26 VOID 27 NTAPI 28 PspSetContext(OUT PKTRAP_FRAME TrapFrame, 29 OUT PVOID NonVolatileContext, 30 IN PCONTEXT Context, 31 IN KPROCESSOR_MODE Mode) 32 { 33 PAGED_CODE(); 34 } 35 36 VOID 37 NTAPI 38 PspGetOrSetContextKernelRoutine(IN PKAPC Apc, 39 IN OUT PKNORMAL_ROUTINE* NormalRoutine, 40 IN OUT PVOID* NormalContext, 41 IN OUT PVOID* SystemArgument1, 42 IN OUT PVOID* SystemArgument2) 43 { 44 UNIMPLEMENTED; 45 } 46 47 /* EOF */ 48