Changeset 19918 in vbox for trunk/src/VBox/Runtime/r0drv
- Timestamp:
- May 22, 2009 5:00:28 PM (16 years ago)
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/generic/RTThreadPreemptIsPending-r0drv-generic.cpp
r19825 r19918 1 1 /* $Id$ */ 2 2 /** @file 3 * IPRT - RTThreadPreemptIs Enabled, Generic ring-0 driver implementation.3 * IPRT - RTThreadPreemptIsPending, Generic ring-0 driver implementation. 4 4 */ 5 5 … … 36 36 37 37 38 RTDECL(bool) RTThreadPreemptIs Enabled(RTTHREAD hThread)38 RTDECL(bool) RTThreadPreemptIsPending(RTTHREAD hThread) 39 39 { 40 40 Assert(hThread == NIL_RTTHREAD); 41 return true;41 return false; 42 42 } 43 43
Note:
See TracChangeset
for help on using the changeset viewer.