Changeset 13837 in vbox for trunk/src/VBox/Runtime/r3/posix
- Timestamp:
- Nov 5, 2008 2:54:02 AM (16 years ago)
- Location:
- trunk/src/VBox/Runtime/r3/posix
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/posix/process-posix.cpp
r11836 r13837 82 82 { 83 83 int rc = RTErrConvertFromErrno(errno); 84 AssertMsgFailed(("'%s' % Vrc!\n", pszExec, rc));84 AssertMsgFailed(("'%s' %Rrc!\n", pszExec, rc)); 85 85 return rc; 86 86 } -
trunk/src/VBox/Runtime/r3/posix/sched-posix.cpp
r13836 r13837 712 712 { 713 713 rc = RTErrConvertFromErrno(errno); 714 AssertMsgFailed(("setpriority(,,%d) -> errno=%d rc=% Vrc\n", pa[i].iNice, errno, rc));714 AssertMsgFailed(("setpriority(,,%d) -> errno=%d rc=%Rrc\n", pa[i].iNice, errno, rc)); 715 715 } 716 716 break; … … 726 726 727 727 #ifdef THREAD_LOGGING 728 LogFlow(("rtProcNativeSetPriority: returns % Vrc enmPriority=%d\n", rc, enmPriority));728 LogFlow(("rtProcNativeSetPriority: returns %Rrc enmPriority=%d\n", rc, enmPriority)); 729 729 rtSchedDumpPriority(); 730 730 #endif … … 777 777 int rcNative = rc; 778 778 rc = RTErrConvertFromErrno(rc); 779 AssertMsgFailed(("pthread_[gs]etschedparam(%p, %d, {%d}) -> rcNative=%d rc=% Vrc\n",779 AssertMsgFailed(("pthread_[gs]etschedparam(%p, %d, {%d}) -> rcNative=%d rc=%Rrc\n", 780 780 (void *)Self, iPolicy, SchedParam.sched_priority, rcNative, rc)); NOREF(rcNative); 781 781 break; … … 796 796 #if 0 797 797 rc = RTErrConvertFromErrno(errno); 798 AssertMsgFailed(("setpriority(,, %d) -> errno=%d rc=% Vrc\n", iPriority, errno, rc));798 AssertMsgFailed(("setpriority(,, %d) -> errno=%d rc=%Rrc\n", iPriority, errno, rc)); 799 799 #else 800 800 /** @todo -
trunk/src/VBox/Runtime/r3/posix/thread-posix.cpp
r13664 r13837 266 266 #endif 267 267 { 268 LogFlow(("RTThreadSleep: returning % Vrc (cMillies=%d)\n", VINF_SUCCESS, cMillies));268 LogFlow(("RTThreadSleep: returning %Rrc (cMillies=%d)\n", VINF_SUCCESS, cMillies)); 269 269 return VINF_SUCCESS; 270 270 } … … 279 279 if (!nanosleep(&ts, &tsrem)) 280 280 { 281 LogFlow(("RTThreadSleep: returning % Vrc (cMillies=%d)\n", VINF_SUCCESS, cMillies));281 LogFlow(("RTThreadSleep: returning %Rrc (cMillies=%d)\n", VINF_SUCCESS, cMillies)); 282 282 return VINF_SUCCESS; 283 283 } … … 285 285 286 286 int rc = RTErrConvertFromErrno(errno); 287 LogFlow(("RTThreadSleep: returning % Vrc (cMillies=%d)\n", rc, cMillies));287 LogFlow(("RTThreadSleep: returning %Rrc (cMillies=%d)\n", rc, cMillies)); 288 288 return rc; 289 289 }
Note:
See TracChangeset
for help on using the changeset viewer.