Changeset 103005 in vbox for trunk/src/VBox/Runtime/common
- Timestamp:
- Jan 23, 2024 11:55:58 PM (14 months ago)
- svn:sync-xref-src-repo-rev:
- 161239
- Location:
- trunk/src/VBox/Runtime/common
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/alloc/memcache.cpp
r100309 r103005 313 313 */ 314 314 size_t const cbPage = RTSystemGetPageSize(); 315 PRTMEMCACHEPAGE pPage = (PRTMEMCACHEPAGE)RTMemPageAlloc (cbPage);315 PRTMEMCACHEPAGE pPage = (PRTMEMCACHEPAGE)RTMemPageAllocZ(cbPage); 316 316 if (pPage) 317 317 { 318 318 uint32_t const cObjects = RT_MIN(pThis->cPerPage, pThis->cMax - pThis->cTotal); 319 319 320 ASMMemZeroPage(pPage);321 320 pPage->pCache = pThis; 322 321 pPage->pNext = NULL; -
trunk/src/VBox/Runtime/common/fs/fatvfs.cpp
r102899 r103005 44 44 45 45 #include <iprt/asm.h> 46 #include <iprt/asm-mem.h> 46 47 #include <iprt/assert.h> 47 48 #include <iprt/ctype.h> -
trunk/src/VBox/Runtime/common/fs/isomakerimport.cpp
r98103 r103005 45 45 #include <iprt/avl.h> 46 46 #include <iprt/asm.h> 47 #include <iprt/asm-mem.h> 47 48 #include <iprt/assert.h> 48 49 #include <iprt/err.h> -
trunk/src/VBox/Runtime/common/fs/isovfs.cpp
r100908 r103005 45 45 #include <iprt/alloca.h> 46 46 #include <iprt/asm.h> 47 #include <iprt/asm-mem.h> 47 48 #include <iprt/assert.h> 48 49 #include <iprt/err.h> -
trunk/src/VBox/Runtime/common/fs/ntfsvfs.cpp
r100908 r103005 42 42 #include <iprt/fsvfs.h> 43 43 44 #include <iprt/asm-mem.h> 44 45 #include <iprt/asm.h> 45 46 #include <iprt/avl.h> -
trunk/src/VBox/Runtime/common/ldr/ldrMachO.cpp
r98103 r103005 70 70 71 71 #include <iprt/asm.h> 72 #include <iprt/asm-mem.h> 72 73 #include <iprt/assert.h> 73 74 #include <iprt/base64.h> -
trunk/src/VBox/Runtime/common/ldr/ldrPE.cpp
r100442 r103005 45 45 #include <iprt/assert.h> 46 46 #include <iprt/asm.h> 47 #include <iprt/asm-mem.h> 47 48 #include <iprt/dbg.h> 48 49 #include <iprt/err.h> -
trunk/src/VBox/Runtime/common/math/bignum.cpp
r98103 r103005 45 45 #include <iprt/bignum.h> 46 46 47 #include <iprt/asm-mem.h> 47 48 #include <iprt/asm.h> 48 49 #include <iprt/asm-math.h> -
trunk/src/VBox/Runtime/common/misc/sg.cpp
r101753 r103005 42 42 #include <iprt/string.h> 43 43 #include <iprt/assert.h> 44 #include <iprt/asm .h>44 #include <iprt/asm-mem.h> 45 45 46 46 -
trunk/src/VBox/Runtime/common/vfs/vfsmemory.cpp
r100908 r103005 42 42 #include <iprt/vfs.h> 43 43 44 #include <iprt/asm .h>44 #include <iprt/asm-mem.h> 45 45 #include <iprt/assert.h> 46 46 #include <iprt/err.h> -
trunk/src/VBox/Runtime/common/vfs/vfsmount.cpp
r98103 r103005 42 42 #include <iprt/vfs.h> 43 43 44 #include <iprt/asm.h> 44 #define RT_ASM_INCLUDE_PAGE_SIZE 45 #include <iprt/asm-mem.h> 45 46 #include <iprt/assert.h> 46 47 #include <iprt/err.h> -
trunk/src/VBox/Runtime/common/zip/tarvfs.cpp
r100908 r103005 42 42 #include <iprt/zip.h> 43 43 44 #include <iprt/asm .h>44 #include <iprt/asm-mem.h> 45 45 #include <iprt/assert.h> 46 46 #include <iprt/ctype.h> -
trunk/src/VBox/Runtime/common/zip/tarvfswriter.cpp
r100908 r103005 42 42 #include <iprt/zip.h> 43 43 44 #include <iprt/asm .h>44 #include <iprt/asm-mem.h> 45 45 #include <iprt/assert.h> 46 46 #include <iprt/err.h>
Note:
See TracChangeset
for help on using the changeset viewer.