mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-02 19:26:32 +00:00
Implement KeGetCurrentIrql as intrinsic.
svn path=/branches/ros-amd64-bringup/; revision=35506
This commit is contained in:
@@ -9962,10 +9962,19 @@ KeRaiseIrqlToSynchLevel(
|
||||
|
||||
#elif defined(_M_AMD64)
|
||||
|
||||
/*
|
||||
NTKERNELAPI
|
||||
KIRQL
|
||||
KeGetCurrentIrql(
|
||||
VOID);
|
||||
*/
|
||||
FORCEINLINE
|
||||
KIRQL
|
||||
_KeGetCurrentIrql(VOID)
|
||||
{
|
||||
return (KIRQL)__readcr8();
|
||||
}
|
||||
#define KeGetCurrentIrql _KeGetCurrentIrql
|
||||
|
||||
NTKERNELAPI
|
||||
VOID
|
||||
|
||||
Reference in New Issue
Block a user