Changeset 19711 in vbox for trunk/src/VBox/Runtime/r0drv
- Timestamp:
- May 14, 2009 9:24:28 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 47328
- Location:
- trunk/src/VBox/Runtime/r0drv
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/initterm-r0drv.cpp
r13476 r19711 78 78 if (RT_SUCCESS(rc)) 79 79 { 80 #if !defined(RT_OS_LINUX) && !defined(RT_OS_WINDOWS)80 #if !defined(RT_OS_LINUX) 81 81 rc = rtThreadInit(); 82 82 #endif -
trunk/src/VBox/Runtime/r0drv/nt/thread2-r0drv-nt.cpp
r8245 r19711 81 81 * Do the actual modification. 82 82 */ 83 NTSTATUS rc = KeSetPriorityThread((PKTHREAD)pThread->Core.Key, Priority); 84 AssertMsg(NT_SUCCESS(rc), ("%#x\n", rc)); 85 return RTErrConvertFromNtStatus(rc); 83 /*KPRIORITY oldPririty = */KeSetPriorityThread((PKTHREAD)pThread->Core.Key, Priority); 84 return VINF_SUCCESS; 86 85 } 87 86
Note:
See TracChangeset
for help on using the changeset viewer.