Added GetThreadId interface and internal mutex deadlock detection code

date	2001.02.22.17.10.00;	author rmoore1;	state Exp;
This commit is contained in:
aystarik 2005-06-29 17:57:31 +00:00
parent c010d0241d
commit 8cd5a65242

View File

@ -2,7 +2,7 @@
/******************************************************************************
*
* Module Name: amsystem - Interface to OS services
* $Revision: 1.55 $
* $Revision: 1.56 $
*
*****************************************************************************/
@ -127,26 +127,6 @@
MODULE_NAME ("amsystem")
/*******************************************************************************
*
* FUNCTION: AcpiAmlSystemThreadId
*
* PARAMETERS: None
*
* RETURN: Current Thread ID (for this implementation a 1 is returned)
*
* DESCRIPTION: An invocation is identified by its Thread ID. In a single
* threaded OS the Thread ID is undefined so a 1 will be
* returned.
*
******************************************************************************/
UINT16
AcpiAmlSystemThreadId (void)
{
return (1);
}
/*******************************************************************************
*