Changeset 19917 in vbox for trunk/src/VBox
- Timestamp:
- May 22, 2009 4:59:17 PM (16 years ago)
- Location:
- trunk/src/VBox/Runtime/r0drv/solaris
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/solaris/thread-r0drv-solaris.c
r13262 r19917 113 113 114 114 115 RTDECL(bool) RTThreadPreemptIsPending(RTTHREAD hThread) 116 { 117 Assert(hThread == NIL_RTTHREAD); 118 /** @todo Review this! */ 119 return CPU->cpu_runrun != 0 120 || CPU->cpu_kprunrun != 0; 121 } 122 123 115 124 RTDECL(void) RTThreadPreemptDisable(PRTTHREADPREEMPTSTATE pState) 116 125 { -
trunk/src/VBox/Runtime/r0drv/solaris/vbi/thread-r0drv-solaris.c
r13254 r19917 104 104 105 105 106 RTDECL(bool) RTThreadPreemptIsPending(RTTHREAD hThread) 107 { 108 Assert(hThread == NIL_RTTHREAD); 109 /** @todo Review this! */ 110 return CPU->cpu_runrun != 0 111 || CPU->cpu_kprunrun != 0; 112 } 113 114 106 115 RTDECL(void) RTThreadPreemptDisable(PRTTHREADPREEMPTSTATE pState) 107 116 {
Note:
See TracChangeset
for help on using the changeset viewer.