Changeset 90488 in vbox for trunk/src/VBox/Runtime/r0drv/nt
- Timestamp:
- Aug 3, 2021 9:17:59 AM (4 years ago)
- svn:sync-xref-src-repo-rev:
- 146092
- Location:
- trunk/src/VBox/Runtime/r0drv/nt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/nt/semevent-r0drv-nt.cpp
r90459 r90488 276 276 } 277 277 278 279 RTR0DECL(bool) RTSemEventIsSignalSafe(void) 280 { 281 return KeGetCurrentIrql() <= DISPATCH_LEVEL; 282 } 283 -
trunk/src/VBox/Runtime/r0drv/nt/semeventmulti-r0drv-nt.cpp
r82968 r90488 299 299 } 300 300 301 302 RTR0DECL(bool) RTSemEventMultiIsSignalSafe(void) 303 { 304 return KeGetCurrentIrql() <= DISPATCH_LEVEL; 305 } 306
Note:
See TracChangeset
for help on using the changeset viewer.