VirtualBox

Changeset 75883 in vbox for trunk/src/VBox/Runtime


Ignore:
Timestamp:
Dec 2, 2018 8:58:27 PM (6 years ago)
Author:
vboxsync
Message:

IPRT/shmem: Make doxygen and scm happy.

Location:
trunk/src/VBox/Runtime/r3
Files:
2 edited

Legend:

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

    r75881 r75883  
    4747#include <limits.h>
    4848
    49 /** Workaround on systems which do not provide this. */
     49/* Workaround on systems which do not provide this. */
    5050#ifndef NAME_MAX
    5151# define NAME_MAX 255
    5252#endif
    5353
     54
    5455/*********************************************************************************************************************************
    5556*   Structures and Typedefs                                                                                                      *
     
    6465    volatile uint32_t   cMappings;
    6566    /** Pointer to the region mapping. */
    66     void                *pvMapping;
     67    void               *pvMapping;
    6768    /** Start offset */
    6869    size_t              offRegion;
     
    8586    /** Magic value (RTSHMEM_MAGIC). */
    8687    uint32_t            u32Magic;
    87     /** Pointer to the shared memory object name. */
    88     char                *pszName;
    8988    /** File descriptor for the underlying shared memory object. */
    9089    int                 iFdShm;
     90    /** Pointer to the shared memory object name. */
     91    char               *pszName;
    9192    /** Flag whether this instance created the named shared memory object. */
    9293    bool                fCreate;
     
    104105
    105106
    106 /*********************************************************************************************************************************
    107 *   Internal Functions                                                                                                           *
    108 *********************************************************************************************************************************/
    109 
    110107
    111108/**
  • trunk/src/VBox/Runtime/r3/win/shmem-win.cpp

    r75879 r75883  
    6262#endif
    6363
     64
    6465/*********************************************************************************************************************************
    6566*   Structures and Typedefs                                                                                                      *
     
    7475    volatile uint32_t   cMappings;
    7576    /** Pointer to the region mapping. */
    76     void                *pvMapping;
     77    void               *pvMapping;
    7778    /** Start offset */
    7879    size_t              offRegion;
     
    9596    /** Magic value (RTSHMEM_MAGIC). */
    9697    uint32_t            u32Magic;
     98    /** Flag whether this instance created the named shared memory object. */
     99    bool                fCreate;
    97100    /** Handle to the underlying mapping object. */
    98101    HANDLE              hShmObj;
    99     /** Flag whether this instance created the named shared memory object. */
    100     bool                fCreate;
    101102    /** Size of the mapping object in bytes. */
    102103    size_t              cbMax;
     
    114115
    115116
    116 /*********************************************************************************************************************************
    117 *   Internal Functions                                                                                                           *
    118 *********************************************************************************************************************************/
    119117
    120118
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