Changeset 2565 in vbox for trunk/include
- Timestamp:
- May 9, 2007 4:28:03 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/pdm.h
r2538 r2565 317 317 { 318 318 /** Padding. */ 319 uint8_t padding[HC_ARCH_BITS == 64 ? 0x a8 : 0x80];319 uint8_t padding[HC_ARCH_BITS == 64 ? 0xb8 : 0x80]; 320 320 #ifdef PDMCRITSECTINT_DECLARED 321 321 /** The internal structure (not normally visible). */ … … 381 381 */ 382 382 PDMR3DECL(int) PDMR3CritSectTryEnter(PPDMCRITSECT pCritSect); 383 384 /** 385 * Schedule a event semaphore for signalling upon critsect exit. 386 * 387 * @returns VINF_SUCCESS on success. 388 * @returns VERR_TOO_MANY_SEMAPHORES if the critsect was owned. 389 * @returns VERR_SEM_DESTROYED if RTCritSectDelete was called while waiting. 390 * @param pCritSect The critical section. 391 * @param EventToSignal The semapore that should be signalled. 392 */ 393 PDMR3DECL(int) PDMR3CritSectScheduleExitEvent(PPDMCRITSECT pCritSect, RTSEMEVENT EventToSignal); 383 394 384 395 /**
Note:
See TracChangeset
for help on using the changeset viewer.