Removed dbg trap/assert interfaces

date	2001.07.03.22.39.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 20:34:54 +00:00
parent d482b8a5ef
commit 41bd8da23c

View File

@ -1,7 +1,7 @@
/****************************************************************************** /******************************************************************************
* *
* Module Name: oswinxf - Windows application interface * Module Name: oswinxf - Windows application interface
* $Revision: 1.9 $ * $Revision: 1.10 $
* *
*****************************************************************************/ *****************************************************************************/
@ -1085,41 +1085,25 @@ AcpiOsWriteMemory (
/****************************************************************************** /******************************************************************************
* *
* FUNCTION: AcpiOsDbgTrap * FUNCTION: AcpiOsSignal
* *
* PARAMETERS: pTrapCause - pointer to char array that contains description * PARAMETERS: Function ACPI CA signal function code
* of cause of trap. * Info Pointer to function-dependent structure
* *
* RETURN: None. * RETURN: Status
* *
* DESCRIPTION: Trap. Causes execution to halt after logging message. * DESCRIPTION: Miscellaneous functions
* *
*****************************************************************************/ *****************************************************************************/
void ACPI_STATUS
AcpiOsDbgTrap (char *pTrapCause) AcpiOsSignal (
{ UINT32 Function,
} // Debug_TRAP void *Info)
/******************************************************************************
*
* FUNCTION: AcpiOsDbgTrap
*
* PARAMETERS: This should not be called directly. Use DEBUG_ASSERT macro.
*
* RETURN: None.
*
* DESCRIPTION: Assertion routine.
*
*****************************************************************************/
void
AcpiOsDbgAssert(void *FailedAssertion, void *FileName, UINT32 LineNumber,
char *Message)
{ {
// return 0; return (AE_OK);
} // Debug_Assert }