VirtualBox

Changeset 78561 in vbox for trunk/src/VBox/Runtime/r3/win


Ignore:
Timestamp:
May 17, 2019 11:15:02 AM (6 years ago)
Author:
vboxsync
Message:

Runtime/RTShMem,tstRTShMem: Add API to delete a named shared memory object on POSIX hosts and make use of it in the testcase to cleanup any leftovers from previous runs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Runtime/r3/win/shmem-win.cpp

    r76553 r78561  
    263263
    264264
     265RTDECL(int) RTShMemDelete(const char *pszName)
     266{
     267    AssertPtrReturn(pszName, VERR_INVALID_POINTER);
     268    AssertReturn(*pszName != '\0', VERR_INVALID_PARAMETER);
     269
     270    return VERR_NOT_SUPPORTED;
     271}
     272
     273
    265274RTDECL(uint32_t) RTShMemRefCount(RTSHMEM hShMem)
    266275{
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