VirtualBox

Changeset 13837 in vbox for trunk/src/VBox/Runtime/r3/posix


Ignore:
Timestamp:
Nov 5, 2008 2:54:02 AM (16 years ago)
Author:
vboxsync
Message:

s/%Vr\([acfs]\)/%Rr\1/g - since I'm upsetting everyone anyway, better make the most of it...

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  
    8282    {
    8383        int rc = RTErrConvertFromErrno(errno);
    84         AssertMsgFailed(("'%s' %Vrc!\n", pszExec, rc));
     84        AssertMsgFailed(("'%s' %Rrc!\n", pszExec, rc));
    8585        return rc;
    8686    }
  • trunk/src/VBox/Runtime/r3/posix/sched-posix.cpp

    r13836 r13837  
    712712                    {
    713713                        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));
    715715                    }
    716716                    break;
     
    726726
    727727#ifdef THREAD_LOGGING
    728     LogFlow(("rtProcNativeSetPriority: returns %Vrc enmPriority=%d\n", rc, enmPriority));
     728    LogFlow(("rtProcNativeSetPriority: returns %Rrc enmPriority=%d\n", rc, enmPriority));
    729729    rtSchedDumpPriority();
    730730#endif
     
    777777            int rcNative = rc;
    778778            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",
    780780                             (void *)Self, iPolicy, SchedParam.sched_priority, rcNative, rc)); NOREF(rcNative);
    781781            break;
     
    796796#if 0
    797797                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));
    799799#else
    800800                /** @todo
  • trunk/src/VBox/Runtime/r3/posix/thread-posix.cpp

    r13664 r13837  
    266266#endif
    267267        {
    268             LogFlow(("RTThreadSleep: returning %Vrc (cMillies=%d)\n", VINF_SUCCESS, cMillies));
     268            LogFlow(("RTThreadSleep: returning %Rrc (cMillies=%d)\n", VINF_SUCCESS, cMillies));
    269269            return VINF_SUCCESS;
    270270        }
     
    279279        if (!nanosleep(&ts, &tsrem))
    280280        {
    281             LogFlow(("RTThreadSleep: returning %Vrc (cMillies=%d)\n", VINF_SUCCESS, cMillies));
     281            LogFlow(("RTThreadSleep: returning %Rrc (cMillies=%d)\n", VINF_SUCCESS, cMillies));
    282282            return VINF_SUCCESS;
    283283        }
     
    285285
    286286    int rc = RTErrConvertFromErrno(errno);
    287     LogFlow(("RTThreadSleep: returning %Vrc (cMillies=%d)\n", rc, cMillies));
     287    LogFlow(("RTThreadSleep: returning %Rrc (cMillies=%d)\n", rc, cMillies));
    288288    return rc;
    289289}
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette