VirtualBox

Ignore:
Timestamp:
Oct 17, 2021 6:16:11 PM (3 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
147575
Message:

SUPDrv,IPRT,VBoxGuest: Don't export ellipsis functions from SUPDrv, as that makes switching back to the kernel stack unsafe. Exports has changes (added+removed), but not bumping major IOC version as that was done a few hours ago already and it's Sunday. bugref:10124

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/HostDrivers/Support/linux/SUPDrv-linux.c

    r91552 r91789  
    16941694
    16951695
    1696 RTDECL(int) SUPR0Printf(const char *pszFormat, ...)
    1697 {
    1698     va_list va;
     1696RTDECL(int) SUPR0PrintfV(const char *pszFormat, va_list va)
     1697{
    16991698    char    szMsg[512];
    17001699    IPRT_LINUX_SAVE_EFL_AC();
    17011700
    1702     va_start(va, pszFormat);
    17031701    RTStrPrintfV(szMsg, sizeof(szMsg) - 1, pszFormat, va);
    1704     va_end(va);
    17051702    szMsg[sizeof(szMsg) - 1] = '\0';
    17061703
Note: See TracChangeset for help on using the changeset viewer.

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