Changeset 15837 in vbox
- Timestamp:
- Jan 7, 2009 3:50:58 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 41425
- Location:
- trunk
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/mp.h
r12104 r15837 307 307 RTDECL(int) RTMpNotificationDeregister(PFNRTMPNOTIFICATION pfnCallback, void *pvUser); 308 308 309 310 /** 311 * Check if there's work (DPCs on Windows) pending on the current CPU 312 * 313 * @return true if there's pending work on the current CPU, false otherwise 314 * 315 */ 316 RTDECL(bool) RTMpIsCpuWorkPending(); 317 309 318 #endif /* IN_RING0 */ 310 319 -
trunk/src/VBox/Runtime/r0drv/darwin/mp-r0drv-darwin.cpp
r14338 r15837 110 110 /** @todo darwin R0 MP */ 111 111 return RTMpIsCpuPossible(idCpu); 112 } 113 114 RTDECL(bool) RTMpIsCpuWorkPending() 115 { 116 /** @todo (not used on non-Windows platforms yet */ 117 return false; 112 118 } 113 119 -
trunk/src/VBox/Runtime/r0drv/freebsd/mp-r0drv-darwin.cpp
r8245 r15837 44 44 { 45 45 return curcpu; /** @todo is this right? */ 46 } 47 48 RTDECL(bool) RTMpIsCpuWorkPending() 49 { 50 /** @todo (not used on non-Windows platforms yet */ 51 return false; 46 52 } 47 53 -
trunk/src/VBox/Runtime/r0drv/linux/mp-r0drv-linux.c
r12922 r15837 133 133 } 134 134 135 RTDECL(bool) RTMpIsCpuWorkPending() 136 { 137 /** @todo (not used on non-Windows platforms yet */ 138 return false; 139 } 135 140 136 141 RTDECL(PRTCPUSET) RTMpGetOnlineSet(PRTCPUSET pSet) -
trunk/src/VBox/Runtime/r0drv/nt/mp-r0drv-nt.cpp
r13272 r15837 112 112 * (KeQueryMaximumProcessorCount). */ 113 113 return RTMpIsCpuOnline(idCpu); 114 } 115 116 RTDECL(bool) RTMpIsCpuWorkPending() 117 { 118 /** @todo (not used on non-Windows platforms yet */ 119 return false; 114 120 } 115 121 -
trunk/src/VBox/Runtime/r0drv/solaris/mp-r0drv-solaris.c
r9429 r15837 124 124 } 125 125 126 RTDECL(bool) RTMpIsCpuWorkPending() 127 { 128 /** @todo (not used on non-Windows platforms yet */ 129 return false; 130 } 126 131 127 132
Note:
See TracChangeset
for help on using the changeset viewer.