- Timestamp:
- Nov 18, 2008 12:47:26 PM (16 years ago)
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/thread.cpp
r14001 r14298 1236 1236 1237 1237 /** 1238 * Recalculates scheduling attributes for the thedefault process1238 * Recalculates scheduling attributes for the default process 1239 1239 * priority using the specified priority type for the calling thread. 1240 1240 * -
trunk/src/VBox/Runtime/common/string/utf-8.cpp
r14007 r14298 771 771 * Handle invalid encodings passed to RTStrGetCp() and RTStrGetCpEx(). 772 772 * @returns rc 773 * @param ppsz The pointer to the thestring position point.773 * @param ppsz The pointer to the string position point. 774 774 * @param pCp Where to store RTUNICP_INVALID. 775 775 * @param rc The iprt error code. … … 919 919 * Handle invalid encodings passed to RTStrGetCpNEx(). 920 920 * @returns rc 921 * @param ppsz The pointer to the thestring position point.921 * @param ppsz The pointer to the string position point. 922 922 * @param pcch Pointer to the string length. 923 923 * @param pCp Where to store RTUNICP_INVALID. -
trunk/src/VBox/Runtime/generic/timer-generic.cpp
r9444 r14298 58 58 * is destroyed to indicate clearly that thread should exit. */ 59 59 uint32_t volatile u32Magic; 60 /** Flag indicating the t he timer is suspended. */60 /** Flag indicating the timer is suspended. */ 61 61 uint8_t volatile fSuspended; 62 62 /** Flag indicating that the timer has been destroyed. */ -
trunk/src/VBox/Runtime/generic/timerlr-generic.cpp
r10972 r14298 60 60 * is destroyed to indicate clearly that thread should exit. */ 61 61 uint32_t volatile u32Magic; 62 /** Flag indicating the t he timer is suspended. */62 /** Flag indicating the timer is suspended. */ 63 63 bool volatile fSuspended; 64 64 /** Flag indicating that the timer has been destroyed. */ -
trunk/src/VBox/Runtime/r0drv/nt/timer-r0drv-nt.cpp
r9959 r14298 75 75 * is destroyed to indicate clearly that thread should exit. */ 76 76 uint32_t volatile u32Magic; 77 /** Flag indicating the t he timer is suspended. */77 /** Flag indicating the timer is suspended. */ 78 78 bool volatile fSuspended; 79 79 /** Whether the timer must run on one specific CPU or not. */ -
trunk/src/VBox/Runtime/r0drv/os2/timer-r0drv-os2.cpp
r9444 r14298 60 60 /** The next timer in the timer list. */ 61 61 PRTTIMER pNext; 62 /** Flag indicating the t he timer is suspended. */62 /** Flag indicating the timer is suspended. */ 63 63 uint8_t volatile fSuspended; 64 64 /** Cleared at the start of timer processing, set when calling pfnTimer. -
trunk/src/VBox/Runtime/r3/posix/timer-posix.cpp
r13213 r14298 110 110 * is destroyed to indicate clearly that thread should exit. */ 111 111 uint32_t volatile u32Magic; 112 /** Flag indicating the t he timer is suspended. */112 /** Flag indicating the timer is suspended. */ 113 113 uint8_t volatile fSuspended; 114 114 /** Flag indicating that the timer has been destroyed. */ -
trunk/src/VBox/Runtime/testcase/tstInlineAsm.cpp
r12158 r14298 1051 1051 * which is definitely greater than 0x3b9aca00. 1052 1052 * 1053 * bird: No, the C version does *not* crash. So, the question is whether there any1053 * bird: No, the C version does *not* crash. So, the question is whether there's any 1054 1054 * code depending on it not crashing. 1055 1055 * 1056 1056 * Of course the assembly versions of the code crash right now for the reasons you've 1057 * given, but the the32-bit MSC version does not crash.1057 * given, but the 32-bit MSC version does not crash. 1058 1058 * 1059 1059 * frank: The C version does not crash but delivers incorrect results for this case. -
trunk/src/VBox/Runtime/testcase/tstLdr-2.cpp
r13837 r14298 85 85 * One test iteration with one file. 86 86 * 87 * The test is very simple, we load the thefile three times87 * The test is very simple, we load the file three times 88 88 * into two different regions. The first two into each of the 89 89 * regions the for compare usage. The third is loaded into one -
trunk/src/VBox/Runtime/testcase/tstLdr-4.cpp
r13836 r14298 78 78 * One test iteration with one file. 79 79 * 80 * The test is very simple, we load the thefile three times80 * The test is very simple, we load the file three times 81 81 * into two different regions. The first two into each of the 82 82 * regions the for compare usage. The third is loaded into one -
trunk/src/VBox/Runtime/testcase/tstLdr.cpp
r13836 r14298 70 70 * One test iteration with one file. 71 71 * 72 * The test is very simple, we load the thefile three times72 * The test is very simple, we load the file three times 73 73 * into two different regions. The first two into each of the 74 74 * regions the for compare usage. The third is loaded into one
Note:
See TracChangeset
for help on using the changeset viewer.