Changeset 62814 in vbox for trunk/src/VBox/GuestHost/OpenGL/util/threads.c
- Timestamp:
- Aug 1, 2016 12:51:52 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/GuestHost/OpenGL/util/threads.c
r55011 r62814 250 250 { 251 251 /* XXX anything to do? */ 252 (void)b; 252 253 } 253 254 … … 258 259 DWORD dwEvent 259 260 = WaitForMultipleObjects( b->count, b->hEvents, FALSE, INFINITE ); 261 (void)dwEvent; 260 262 #else 261 263 pthread_mutex_lock( &(b->mutex) ); … … 276 278 { 277 279 #ifdef WINDOWS 280 (void) s; (void) count; 278 281 crWarning("CRsemaphore functions not implemented on Windows"); 279 282 #else … … 287 290 #ifdef WINDOWS 288 291 /* to do */ 292 (void) s; 289 293 #else 290 294 sem_wait(s); … … 297 301 #ifdef WINDOWS 298 302 /* to do */ 303 (void) s; 299 304 #else 300 305 sem_post(s);
Note:
See TracChangeset
for help on using the changeset viewer.