Changeset 11020 in vbox for trunk/src/VBox/Runtime/r3/win
- Timestamp:
- Jul 30, 2008 10:48:35 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/r3/win/alloc-win.cpp
r8245 r11020 54 54 * @param cb Size in bytes of the memory block to allocate. 55 55 */ 56 RTDECL(void *) RTMemExecAlloc(size_t cb) 56 RTDECL(void *) RTMemExecAlloc(size_t cb) RT_NO_THROW 57 57 { 58 58 /* … … 92 92 * @param pv Pointer to memory block. 93 93 */ 94 RTDECL(void) RTMemExecFree(void *pv) 94 RTDECL(void) RTMemExecFree(void *pv) RT_NO_THROW 95 95 { 96 96 if (pv) … … 106 106 * @param cb Size of the memory block. Will be rounded up to page size. 107 107 */ 108 RTDECL(void *) RTMemPageAlloc(size_t cb) 108 RTDECL(void *) RTMemPageAlloc(size_t cb) RT_NO_THROW 109 109 { 110 110 #ifdef USE_VIRTUAL_ALLOC … … 125 125 * @param cb Size of the memory block. Will be rounded up to page size. 126 126 */ 127 RTDECL(void *) RTMemPageAllocZ(size_t cb) 127 RTDECL(void *) RTMemPageAllocZ(size_t cb) RT_NO_THROW 128 128 { 129 129 #ifdef USE_VIRTUAL_ALLOC … … 148 148 * NULL will be ignored. 149 149 */ 150 RTDECL(void) RTMemPageFree(void *pv) 150 RTDECL(void) RTMemPageFree(void *pv) RT_NO_THROW 151 151 { 152 152 if (pv) … … 170 170 * @param fProtect The new protection, a combination of the RTMEM_PROT_* defines. 171 171 */ 172 RTDECL(int) RTMemProtect(void *pv, size_t cb, unsigned fProtect) 172 RTDECL(int) RTMemProtect(void *pv, size_t cb, unsigned fProtect) RT_NO_THROW 173 173 { 174 174 /*
Note:
See TracChangeset
for help on using the changeset viewer.