mirror of
https://github.com/acpica/acpica/
synced 2025-01-15 22:09:17 +03:00
Added AcpiOsGetThreadId
date 2001.02.24.00.30.00; author rmoore1; state Exp;
This commit is contained in:
parent
3d78302d0a
commit
98207d8c04
@ -1,7 +1,7 @@
|
|||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
*
|
*
|
||||||
* Module Name: oswinxf - Windows application interface
|
* Module Name: oswinxf - Windows application interface
|
||||||
* $Revision: 1.3 $
|
* $Revision: 1.4 $
|
||||||
*
|
*
|
||||||
*****************************************************************************/
|
*****************************************************************************/
|
||||||
|
|
||||||
@ -766,6 +766,29 @@ AcpiOsRemoveInterruptHandler (
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/******************************************************************************
|
||||||
|
*
|
||||||
|
* FUNCTION: AcpiOsGetThreadId
|
||||||
|
*
|
||||||
|
* PARAMETERS: None
|
||||||
|
*
|
||||||
|
* RETURN: Id of the running thread
|
||||||
|
*
|
||||||
|
* DESCRIPTION: Get the Id of the current (running) thread
|
||||||
|
*
|
||||||
|
*****************************************************************************/
|
||||||
|
|
||||||
|
UINT32
|
||||||
|
AcpiOsGetThreadId (
|
||||||
|
void)
|
||||||
|
{
|
||||||
|
|
||||||
|
|
||||||
|
return (GetCurrentThreadId ());
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/******************************************************************************
|
/******************************************************************************
|
||||||
*
|
*
|
||||||
* FUNCTION: AcpiOsQueueForExecution
|
* FUNCTION: AcpiOsQueueForExecution
|
||||||
|
Loading…
Reference in New Issue
Block a user