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
|
||||
* $Revision: 1.9 $
|
||||
* $Revision: 1.10 $
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
@ -1085,41 +1085,25 @@ AcpiOsWriteMemory (
|
||||
|
||||
/******************************************************************************
|
||||
*
|
||||
* FUNCTION: AcpiOsDbgTrap
|
||||
* FUNCTION: AcpiOsSignal
|
||||
*
|
||||
* PARAMETERS: pTrapCause - pointer to char array that contains description
|
||||
* of cause of trap.
|
||||
* PARAMETERS: Function ACPI CA signal function code
|
||||
* Info Pointer to function-dependent structure
|
||||
*
|
||||
* RETURN: None.
|
||||
* RETURN: Status
|
||||
*
|
||||
* DESCRIPTION: Trap. Causes execution to halt after logging message.
|
||||
* DESCRIPTION: Miscellaneous functions
|
||||
*
|
||||
*****************************************************************************/
|
||||
|
||||
void
|
||||
AcpiOsDbgTrap (char *pTrapCause)
|
||||
{
|
||||
} // Debug_TRAP
|
||||
|
||||
|
||||
/******************************************************************************
|
||||
*
|
||||
* 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)
|
||||
ACPI_STATUS
|
||||
AcpiOsSignal (
|
||||
UINT32 Function,
|
||||
void *Info)
|
||||
{
|
||||
|
||||
// return 0;
|
||||
} // Debug_Assert
|
||||
return (AE_OK);
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user