VirtualBox

Changeset 47783 in vbox


Ignore:
Timestamp:
Aug 16, 2013 8:37:29 AM (12 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
88044
Message:

IPRT/RTFileModeToFlags.cpp: Set default sharing modes.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/iprt/file.h

    r47762 r47783  
    604604 * compatible flags, which then can be used with RTFileOpen* APIs.
    605605 *
     606 * Note: Handling sharing modes is not supported yet, so RTFILE_O_DENY_NONE
     607 *       will be used by default.
     608 *
    606609 * @return  IPRT status code.
    607610 * @param   pszMode                 Mode string to convert.
     
    629632 *
    630633 * Sharing modes:
    631  *      Not implemented yet.
     634 *      Not implemented yet. RTFILE_O_DENY_NONE will be
     635 *      used by default.
    632636 *
    633637 * @return  IPRT status code.
  • trunk/src/VBox/Runtime/common/misc/RTFileModeToFlags.cpp

    r47782 r47783  
    183183
    184184    /* No action mask set? */
    185     if ((uMode & RTFILE_O_ACTION_MASK) == 0)
     185    if (   RT_SUCCESS(rc)
     186        && (uMode & RTFILE_O_ACTION_MASK) == 0)
    186187        rc = VERR_INVALID_PARAMETER;
     188
     189    /** @todo Handle sharing mode. */
     190    uMode |= RTFILE_O_DENY_NONE;
    187191
    188192    if (RT_SUCCESS(rc))
     
    317321
    318322    /** @todo Handle sharing mode. */
     323    uMode |= RTFILE_O_DENY_NONE;
    319324
    320325    if (RT_SUCCESS(rc))
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