mirror of
https://github.com/acpica/acpica/
synced 2025-03-01 03:44:24 +03:00
Removed dbg trap/assert interfaces
date 2001.07.03.22.39.00; author rmoore1; state Exp;
This commit is contained in:
parent
d482b8a5ef
commit
41bd8da23c
@ -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
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user