Changeset 13837 in vbox for trunk/src/VBox/Runtime/r3/win
- Timestamp:
- Nov 5, 2008 2:54:02 AM (16 years ago)
- Location:
- trunk/src/VBox/Runtime/r3/win
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/fileio-win.cpp
r13104 r13837 714 714 DWORD Err = GetLastError(); 715 715 rc = RTErrConvertFromWin32(Err); 716 Log(("RTFileSetTimes(%RTfile, %p, %p, %p, %p): SetFileTime failed with lasterr %d (% Vrc)\n",716 Log(("RTFileSetTimes(%RTfile, %p, %p, %p, %p): SetFileTime failed with lasterr %d (%Rrc)\n", 717 717 File, pAccessTime, pModificationTime, pChangeTime, pBirthTime, Err, rc)); 718 718 } -
trunk/src/VBox/Runtime/r3/win/fs-win.cpp
r8245 r13837 262 262 DWORD Err = GetLastError(); 263 263 rc = RTErrConvertFromWin32(Err); 264 Log(("RTFsQuerySizes(%s,): GetDiskFreeSpaceEx failed with lasterr %d (% Vrc)\n",264 Log(("RTFsQuerySizes(%s,): GetDiskFreeSpaceEx failed with lasterr %d (%Rrc)\n", 265 265 pszFsPath, Err, rc)); 266 266 } … … 291 291 DWORD Err = GetLastError(); 292 292 rc = RTErrConvertFromWin32(Err); 293 Log(("RTFsQuerySizes(%s,): GetDiskFreeSpace failed with lasterr %d (% Vrc)\n",293 Log(("RTFsQuerySizes(%s,): GetDiskFreeSpace failed with lasterr %d (%Rrc)\n", 294 294 pszFsPath, Err, rc)); 295 295 } … … 345 345 DWORD Err = GetLastError(); 346 346 rc = RTErrConvertFromWin32(Err); 347 Log(("RTFsQuerySizes(%s,): GetDiskFreeSpaceEx failed with lasterr %d (% Vrc)\n",347 Log(("RTFsQuerySizes(%s,): GetDiskFreeSpaceEx failed with lasterr %d (%Rrc)\n", 348 348 pszFsPath, Err, rc)); 349 349 } … … 407 407 DWORD Err = GetLastError(); 408 408 rc = RTErrConvertFromWin32(Err); 409 Log(("RTFsQuerySizes(%s,): GetVolumeInformation failed with lasterr %d (% Vrc)\n",409 Log(("RTFsQuerySizes(%s,): GetVolumeInformation failed with lasterr %d (%Rrc)\n", 410 410 pszFsPath, Err, rc)); 411 411 } -
trunk/src/VBox/Runtime/r3/win/path-win.cpp
r13836 r13837 318 318 DWORD Err = GetLastError(); 319 319 rc = RTErrConvertFromWin32(Err); 320 Log(("RTPathSetTimes('%s', %p, %p, %p, %p): SetFileTime failed with lasterr %d (% Vrc)\n",320 Log(("RTPathSetTimes('%s', %p, %p, %p, %p): SetFileTime failed with lasterr %d (%Rrc)\n", 321 321 pszPath, pAccessTime, pModificationTime, pChangeTime, pBirthTime, Err, rc)); 322 322 } -
trunk/src/VBox/Runtime/r3/win/process-win.cpp
r11836 r13837 95 95 AssertPtrReturn(papszEnv, VERR_INVALID_HANDLE); 96 96 /* later: path searching. */ 97 97 98 98 /* 99 99 * Spawn the child. … … 126 126 { 127 127 int rc = RTErrConvertFromWin32(GetLastError()); 128 AssertMsgFailed(("failed to get pid from hProcess=%#x rc=% Vrc\n", hProcess, rc));128 AssertMsgFailed(("failed to get pid from hProcess=%#x rc=%Rrc\n", hProcess, rc)); 129 129 return rc; 130 130 } … … 141 141 { 142 142 int rc = ERROR_INTERNAL_ERROR; /* (we don't have a valid conversion here, but this shouldn't happen anyway.) */ 143 AssertMsgFailed(("failed to get pid from hProcess=%#x rc=% Vrc Status=%#x\n", hProcess, rc, Status));143 AssertMsgFailed(("failed to get pid from hProcess=%#x rc=%Rrc Status=%#x\n", hProcess, rc, Status)); 144 144 return rc; 145 145 } … … 152 152 153 153 int rc = RTErrConvertFromErrno(errno); 154 AssertMsgFailed(("spawn/exec failed rc=% Vrc\n", rc)); /* this migth be annoying... */154 AssertMsgFailed(("spawn/exec failed rc=%Rrc\n", rc)); /* this migth be annoying... */ 155 155 return rc; 156 156 } -
trunk/src/VBox/Runtime/r3/win/sched-win.cpp
r8245 r13837 322 322 DWORD dwLastError = GetLastError(); 323 323 int rc = RTErrConvertFromWin32(dwLastError); 324 AssertMsgFailed(("SetThreadPriority(%p, %d) failed, dwLastError=%d rc=% Vrc\n",324 AssertMsgFailed(("SetThreadPriority(%p, %d) failed, dwLastError=%d rc=%Rrc\n", 325 325 rtThreadNativeGetHandle(pThread), g_pProcessPriority->aTypes[enmType].dwThreadPriority, dwLastError, rc)); 326 326 return rc; -
trunk/src/VBox/Runtime/r3/win/thread-win.cpp
r8245 r13837 150 150 LogFlow(("RTThreadSleep: cMillies=%d\n", cMillies)); 151 151 Sleep(cMillies); 152 LogFlow(("RTThreadSleep: returning % Vrc (cMillies=%d)\n", VINF_SUCCESS, cMillies));152 LogFlow(("RTThreadSleep: returning %Rrc (cMillies=%d)\n", VINF_SUCCESS, cMillies)); 153 153 return VINF_SUCCESS; 154 154 }
Note:
See TracChangeset
for help on using the changeset viewer.