mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 13:10:39 +00:00
[NDIS]
- NdisGetCurrentSystemTime can be called at any IRQL - Fixes assertions running the RTL8185 driver svn path=/branches/wlan-bringup/; revision=54896
This commit is contained in:
parent
9f0044039b
commit
d8403c17ca
1 changed files with 1 additions and 2 deletions
|
@ -57,10 +57,9 @@ NdisGetCurrentSystemTime (
|
||||||
* ARGUMENTS:
|
* ARGUMENTS:
|
||||||
* pSystemTime: pointer to the returned system time
|
* pSystemTime: pointer to the returned system time
|
||||||
* NOTES:
|
* NOTES:
|
||||||
* - call at IRQL <= DISPATCH_LEVEL
|
* - call at any IRQL
|
||||||
*/
|
*/
|
||||||
{
|
{
|
||||||
ASSERT_IRQL(DISPATCH_LEVEL);
|
|
||||||
ASSERT(pSystemTime);
|
ASSERT(pSystemTime);
|
||||||
|
|
||||||
KeQuerySystemTime (pSystemTime);
|
KeQuerySystemTime (pSystemTime);
|
||||||
|
|
Loading…
Reference in a new issue