Changeset 57358 in vbox for trunk/src/VBox/Runtime/common/vfs
- Timestamp:
- Aug 14, 2015 3:16:38 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102121
- Location:
- trunk/src/VBox/Runtime/common/vfs
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/vfs/vfsbase.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/vfs.h> 32 32 #include <iprt/vfslowlevel.h> … … 47 47 48 48 49 /******************************************************************************* 50 * Defined Constants And Macros *51 ******************************************************************************* /49 /********************************************************************************************************************************* 50 * Defined Constants And Macros * 51 *********************************************************************************************************************************/ 52 52 /** The instance data alignment. */ 53 53 #define RTVFS_INST_ALIGNMENT 16U … … 122 122 123 123 124 /******************************************************************************* 125 * Structures and Typedefs *126 ******************************************************************************* /124 /********************************************************************************************************************************* 125 * Structures and Typedefs * 126 *********************************************************************************************************************************/ 127 127 /** @todo Move all this stuff to internal/vfs.h */ 128 128 -
trunk/src/VBox/Runtime/common/vfs/vfschain.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/vfs.h> 32 32 #include <iprt/vfslowlevel.h> … … 49 49 50 50 51 /******************************************************************************* 52 * Global Variables *53 ******************************************************************************* /51 /********************************************************************************************************************************* 52 * Global Variables * 53 *********************************************************************************************************************************/ 54 54 /** Init the critical section once. */ 55 55 static RTONCE g_rtVfsChainElementInitOnce; -
trunk/src/VBox/Runtime/common/vfs/vfsiosmisc.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/vfs.h> 32 32 #include <iprt/vfslowlevel.h> -
trunk/src/VBox/Runtime/common/vfs/vfsmemory.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "internal/iprt.h" 32 32 #include <iprt/vfs.h> … … 43 43 44 44 45 /******************************************************************************* 46 * Header Files *47 ******************************************************************************* /45 /********************************************************************************************************************************* 46 * Header Files * 47 *********************************************************************************************************************************/ 48 48 #include "internal/iprt.h" 49 49 #include <iprt/vfs.h> … … 53 53 54 54 55 /******************************************************************************* 56 * Defined Constants And Macros *57 ******************************************************************************* /55 /********************************************************************************************************************************* 56 * Defined Constants And Macros * 57 *********************************************************************************************************************************/ 58 58 /** The max extent size. */ 59 59 #define RTVFSMEM_MAX_EXTENT_SIZE _2M 60 60 61 61 62 /******************************************************************************* 63 * Structures and Typedefs *64 ******************************************************************************* /62 /********************************************************************************************************************************* 63 * Structures and Typedefs * 64 *********************************************************************************************************************************/ 65 65 66 66 /** -
trunk/src/VBox/Runtime/common/vfs/vfsmisc.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include "internal/iprt.h" 32 32 #include <iprt/vfs.h> -
trunk/src/VBox/Runtime/common/vfs/vfsstdfile.cpp
r56290 r57358 26 26 27 27 28 /******************************************************************************* 29 * Header Files *30 ******************************************************************************* /28 /********************************************************************************************************************************* 29 * Header Files * 30 *********************************************************************************************************************************/ 31 31 #include <iprt/vfs.h> 32 32 #include <iprt/vfslowlevel.h> … … 38 38 39 39 40 /******************************************************************************* 41 * Structures and Typedefs *42 ******************************************************************************* /40 /********************************************************************************************************************************* 41 * Structures and Typedefs * 42 *********************************************************************************************************************************/ 43 43 /** 44 44 * Private data of a standard file.
Note:
See TracChangeset
for help on using the changeset viewer.