Changeset 20124 in vbox for trunk/src/VBox/Runtime/r0drv/generic
- Timestamp:
- May 28, 2009 3:40:06 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 47891
- File:
-
- 1 copied
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/generic/RTThreadPreemptIsPendingTrusty-r0drv-generic.cpp
r20113 r20124 1 1 /* $Id$ */ 2 2 /** @file 3 * IPRT - RTThreadPreemptIsPending , Generic ring-0 driver implementation.3 * IPRT - RTThreadPreemptIsPendingTrusty, Generic ring-0 driver implementation. 4 4 */ 5 5 6 6 /* 7 * Copyright (C) 200 8Sun Microsystems, Inc.7 * Copyright (C) 2009 Sun Microsystems, Inc. 8 8 * 9 9 * This file is part of VirtualBox Open Source Edition (OSE), as … … 33 33 *******************************************************************************/ 34 34 #include <iprt/thread.h> 35 #include <iprt/assert.h>36 35 37 36 38 RTDECL(bool) RTThreadPreemptIsPending (RTTHREAD hThread)37 RTDECL(bool) RTThreadPreemptIsPendingTrusty(void) 39 38 { 40 Assert(hThread == NIL_RTTHREAD);39 /* no, RTThreadPreemptIsPending is not reliable. */ 41 40 return false; 42 41 }
Note:
See TracChangeset
for help on using the changeset viewer.