Changeset 14318 in vbox for trunk/src/VBox
- Timestamp:
- Nov 18, 2008 4:56:53 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 39513
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/alloc/heapsimple.cpp
r13836 r14318 63 63 /** 64 64 * Structure describing a simple heap block. 65 * If this block is allocated, it is followed by the user userdata.65 * If this block is allocated, it is followed by the user data. 66 66 * If this block is free, see RTHEAPSIMPLEFREE. 67 67 */ -
trunk/src/VBox/Runtime/common/time/time.cpp
r8579 r14318 619 619 * 620 620 * It is possible to calculate year-day from month/day and vice 621 * versa. If you adjust any of ofthese, make sure to zero the621 * versa. If you adjust any of these, make sure to zero the 622 622 * other so you make it clear which of the fields to use. If 623 623 * it's ambiguous, the year-day field is used (and you get -
trunk/src/VBox/Runtime/r0drv/freebsd/timer-r0drv-freebsd.c
r9444 r14318 58 58 * is destroyed to indicate clearly that thread should exit. */ 59 59 uint32_t volatile u32Magic; 60 /** Flag indicating th ethe timer is suspended. */60 /** Flag indicating that the timer is suspended. */ 61 61 uint8_t volatile fSuspended; 62 62 /** Whether the timer must run on a specific CPU or not. */ -
trunk/src/VBox/Runtime/r0drv/linux/timer-r0drv-linux.c
r13103 r14318 132 132 * This is NIL_RTSPINLOCK if cCpus == 1. */ 133 133 RTSPINLOCK hSpinlock; 134 /** Flag indicating th ethe timer is suspended. */134 /** Flag indicating that the timer is suspended. */ 135 135 bool volatile fSuspended; 136 136 /** Whether the timer must run on one specific CPU or not. */ -
trunk/src/VBox/Runtime/r0drv/solaris/vbi/timer-r0drv-solaris.c
r13298 r14318 59 59 * is destroyed to indicate clearly that thread should exit. */ 60 60 uint32_t volatile u32Magic; 61 /** Flag indicating th ethe timer is suspended. */61 /** Flag indicating that the timer is suspended. */ 62 62 uint8_t volatile fSuspended; 63 63 /** Run on all CPUs if set */ -
trunk/src/VBox/Runtime/r3/posix/semevent-posix.cpp
r12960 r14318 78 78 /** The object isn't initialized. */ 79 79 #define EVENT_STATE_UNINITIALIZED 0 80 /** The semaphore is issignaled. */80 /** The semaphore is signaled. */ 81 81 #define EVENT_STATE_SIGNALED 0xff00ff00 82 82 /** The semaphore is not signaled. */ -
trunk/src/VBox/Runtime/r3/posix/semeventmulti-posix.cpp
r12960 r14318 67 67 /** The object isn't initialized. */ 68 68 #define EVENTMULTI_STATE_UNINITIALIZED 0 69 /** The semaphore is issignaled. */69 /** The semaphore is signaled. */ 70 70 #define EVENTMULTI_STATE_SIGNALED 0xff00ff00 71 71 /** The semaphore is not signaled. */
Note:
See TracChangeset
for help on using the changeset viewer.