From: Royce Mitchell III Date: Fri, 2 Jul 2004 12:43:38 +0000 (+0000) Subject: oops, if you're going to move a function, get rid of the old one... sorry... X-Git-Tag: backups/win32k_user_reconstruction@16796~56 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=b04f8c0e2234a1310c55e7a10b7c424e3fb1ec04 oops, if you're going to move a function, get rid of the old one... sorry... svn path=/trunk/; revision=9971 --- diff --git a/reactos/ntoskrnl/ke/catch.c b/reactos/ntoskrnl/ke/catch.c index 73e0e5c2102..8702c0a4c1d 100644 --- a/reactos/ntoskrnl/ke/catch.c +++ b/reactos/ntoskrnl/ke/catch.c @@ -16,7 +16,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -/* $Id: catch.c,v 1.44 2004/07/02 01:36:25 royce Exp $ +/* $Id: catch.c,v 1.45 2004/07/02 12:43:38 royce Exp $ * * PROJECT: ReactOS kernel * FILE: ntoskrnl/ke/catch.c @@ -256,30 +256,6 @@ ExSystemExceptionFilter() return FALSE; } -VOID -FASTCALL -KeRosTrapReturn ( PKTRAP_FRAME TrapFrame, PKTRAP_FRAME PrevTrapFrame ); - -NTSTATUS STDCALL -NtRaiseException (IN PEXCEPTION_RECORD ExceptionRecord, - IN PCONTEXT Context, - IN BOOLEAN SearchFrames) -{ - PKTRAP_FRAME TrapFrame = KeGetCurrentThread()->TrapFrame; - PKTRAP_FRAME PrevTrapFrame = (PKTRAP_FRAME)TrapFrame->Edx; - - KeGetCurrentKPCR()->Tib.ExceptionList = TrapFrame->ExceptionList; - - KiDispatchException(ExceptionRecord, - Context, - PsGetCurrentThread()->Tcb.TrapFrame, - (KPROCESSOR_MODE)ExGetPreviousMode(), - SearchFrames); - - KeRosTrapReturn ( TrapFrame, PrevTrapFrame ); - return(STATUS_SUCCESS); -} - /* * @unimplemented */