Changeset 21995 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Aug 5, 2009 1:05:05 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 50730
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r0drv/solaris/semevent-r0drv-solaris.c
r20793 r21995 125 125 RTDECL(int) RTSemEventSignal(RTSEMEVENT EventSem) 126 126 { 127 #ifdef RT_STRICT 128 bool fInts = ASMIntAreEnabled(); 129 #endif 127 130 PRTSEMEVENTINTERNAL pEventInt = (PRTSEMEVENTINTERNAL)EventSem; 128 131 AssertPtrReturn(pEventInt, VERR_INVALID_HANDLE); … … 143 146 144 147 mutex_exit(&pEventInt->Mtx); 148 149 #ifdef RT_STRICT 150 AssertMsg(fInts == ASMIntAreEnabled(), ("%d\n", fInts)); 151 #endif 145 152 return VINF_SUCCESS; 146 153 } … … 166 173 { 167 174 ASMAtomicIncU32(&pEventInt->cWaiters); 168 175 169 176 /* 170 177 * Translate milliseconds into ticks and go to sleep.
Note:
See TracChangeset
for help on using the changeset viewer.