- Timestamp:
- Oct 10, 2014 12:19:30 AM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/Support/win/SUPDrv-win.cpp
r53002 r53016 3941 3941 } 3942 3942 3943 /* The system process is allowed having one open process handle in 3944 Windows 8.1 and later. */ 3945 if ( g_uNtVerCombined >= SUP_MAKE_NT_VER_SIMPLE(6, 3) 3946 && cSystemProcessHandles < 1 3943 /* The system process is allowed having two open process handle in 3944 Windows 8.1 and later, and one in earlier. This is probably a 3945 little overly paranoid as I think we can safely trust the 3946 system process... */ 3947 if ( cSystemProcessHandles < (g_uNtVerCombined >= SUP_MAKE_NT_VER_SIMPLE(6, 3) ? 2 : 1) 3947 3948 && pHandleInfo->UniqueProcessId == PsGetProcessId(PsInitialSystemProcess)) 3948 3949 {
Note:
See TracChangeset
for help on using the changeset viewer.