Changeset 28929 in vbox
- Timestamp:
- Apr 30, 2010 11:26:46 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60896
- Location:
- trunk/src/VBox/Runtime/r3
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/darwin/rtProcInitExePath-darwin.cpp
r28915 r28929 50 50 51 51 int rc = rtPathFromNativeCopy(pszPath, cchPath, pszImageName, NULL); 52 AssertMsgRCReturn(rc, ("rc=%Rrc pszLink=\"%s\"\nhex: %.*Rh sx\n", rc, pszPath, strlen(pszImageName), pszPath), rc);52 AssertMsgRCReturn(rc, ("rc=%Rrc pszLink=\"%s\"\nhex: %.*Rhxs\n", rc, pszPath, strlen(pszImageName), pszPath), rc); 53 53 54 54 return VINF_SUCCESS; -
trunk/src/VBox/Runtime/r3/freebsd/rtProcInitExePath-freebsd.cpp
r28915 r28929 58 58 const char *pszTmp; 59 59 int rc = rtPathFromNative(&pszTmp, pszPath, NULL); 60 AssertMsgRCReturn(rc, ("rc=%Rrc pszPath=\"%s\"\nhex: %.*Rh sx\n", rc, pszPath, cchExePath, pszPath), rc);60 AssertMsgRCReturn(rc, ("rc=%Rrc pszPath=\"%s\"\nhex: %.*Rhxs\n", rc, pszPath, cchExePath, pszPath), rc); 61 61 if (pszTmp != pszPath) 62 62 { … … 83 83 char const *pszTmp; 84 84 int rc = rtPathFromNative(&pszTmp, pszPath); 85 AssertMsgRCReturn(rc, ("rc=%Rrc pszLink=\"%s\"\nhex: %.*Rh sx\n", rc, pszPath, cchLink, pszPath), rc);85 AssertMsgRCReturn(rc, ("rc=%Rrc pszLink=\"%s\"\nhex: %.*Rhxs\n", rc, pszPath, cchLink, pszPath), rc); 86 86 if (pszTmp != pszPath) 87 87 { -
trunk/src/VBox/Runtime/r3/linux/rtProcInitExePath-linux.cpp
r28915 r28929 52 52 char const *pszTmp; 53 53 int rc = rtPathFromNative(&pszTmp, pszPath, NULL); 54 AssertMsgRCReturn(rc, ("rc=%Rrc pszLink=\"%s\"\nhex: %.*Rh sx\n", rc, pszPath, cchLink, pszPath), rc);54 AssertMsgRCReturn(rc, ("rc=%Rrc pszLink=\"%s\"\nhex: %.*Rhxs\n", rc, pszPath, cchLink, pszPath), rc); 55 55 if (pszTmp != pszPath) 56 56 { -
trunk/src/VBox/Runtime/r3/os2/rtProcInitExePath-os2.cpp
r28915 r28929 50 50 char const *pszTmp; 51 51 int rc = rtPathFromNative(&pszTmp, pszPath, NULL); 52 AssertMsgRCReturn(rc, ("rc=%Rrc pszLink=\"%s\"\nhex: %.*Rh sx\n", rc, pszPath, cchPath, pszPath), rc);52 AssertMsgRCReturn(rc, ("rc=%Rrc pszLink=\"%s\"\nhex: %.*Rhxs\n", rc, pszPath, cchPath, pszPath), rc); 53 53 if (pszTmp != pszPath) 54 54 { -
trunk/src/VBox/Runtime/r3/solaris/rtProcInitExePath-solaris.cpp
r28915 r28929 54 54 char const *pszTmp; 55 55 int rc = rtPathFromNative(&pszTmp, pszPath, NULL); 56 AssertMsgRCReturn(rc, ("rc=%Rrc pszLink=\"%s\"\nhex: %.*Rh sx\n", rc, pszPath, cchLink, pszPath), rc);56 AssertMsgRCReturn(rc, ("rc=%Rrc pszLink=\"%s\"\nhex: %.*Rhxs\n", rc, pszPath, cchLink, pszPath), rc); 57 57 if (pszTmp != pszPath) 58 58 {
Note:
See TracChangeset
for help on using the changeset viewer.