VirtualBox

Changeset 84054 in vbox for trunk/src/VBox/ExtPacks


Ignore:
Timestamp:
Apr 28, 2020 4:05:00 PM (5 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
137633
Message:

IPRT,++: Apply bldprog-strtab.h and friends to the IPRT status message database (errmsg.cpp) to reduce size. The interface (RTErrMsg*) has been reworked as we no longer have C-strings in the database, but 'compressed' string w/o zero terminators. bugref:9726

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/ExtPacks/VBoxDTrace/onnv/lib/libdtrace/common/dt_cc.c

    r77108 r84054  
    19901990        rc = RTDirOpen(&hDir, path);
    19911991        if (RT_FAILURE(rc)) {
    1992                 dt_dprintf("skipping lib dir %s: %s\n", path, RTErrGetShort(rc));
     1992                char szTmp[160];
     1993                RTErrQueryMsgShort(rc, szTmp, sizeof(szTmp), false /*fFaileIfUnknown*/);
     1994                dt_dprintf("skipping lib dir %s: %s\n", path, szTmp);
    19931995                return (0);
    19941996        }
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