_malloc_dbg
Allocates a block of memory in the heap with extra space for a debugging header and overwrite buffers (debug version only).
Syntax
void *_malloc_dbg(
size_t size,
int blockType,
const char *filename,
int linenumber
);
Parameters
size
Requested size of the memory block (in bytes).
blockType
Requested type of the memory block: _CLIENT_BLOCK
or _NORMAL_BLOCK
.
filename
Pointer to the name of the source file that requested the allocation operation or NULL
.
linenumber
Line number in the source file where the allocation operation was requested or NULL
.
The filename
and linenumber
parameters are only available when _malloc_dbg
has been called explicitly or the _CRTDBG_MAP_ALLOC
preprocessor constant has been defined.
Return value
On successful completion, this function returns a pointer to the user portion of the allocated memory block, calls the new handler function, or returns NULL
. For a complete description of the return behavior, see the following Remarks section. For more information about how the new handler function is used, see the malloc
function.
Remarks
_malloc_dbg
is a debug version of the malloc
function. When _DEBUG
isn't defined, each call to _malloc_dbg
is reduced to a call to malloc
. Both malloc
and _malloc_dbg
allocate a block of memory in the base heap, but _malloc_dbg
offers several debugging features: buffers on either side of the user portion of the block to test for leaks, a block type parameter to track specific allocation types, and filename
/linenumber
information to determine the origin of allocation requests.
_malloc_dbg
allocates the memory block with slightly more space than the requested size
. The extra space is used by the debug heap manager to link the debug memory blocks and to provide the application with debug header information and overwrite buffers. When the block is allocated, the user portion of the block is filled with the value 0xCD, and each of the overwrite buffers are filled with 0xFD.
_malloc_dbg
sets errno
to ENOMEM
if a memory allocation fails or if the amount of memory needed (including the overhead mentioned previously) exceeds _HEAP_MAXREQ
. For information about this and other error codes, see errno
, _doserrno
, _sys_errlist
, and _sys_nerr
.
For information about how memory blocks are allocated, initialized, and managed in the debug version of the base heap, see CRT debug heap details. For information about the allocation block types and how they're used, see Types of blocks on the debug heap. For information about the differences between standard heap functions and debug versions, see Debug versions of heap allocation functions.
Requirements
Routine | Required header |
---|---|
_malloc_dbg |
<crtdbg.h> |
For more compatibility information, see Compatibility.
Libraries
Debug versions of C run-time libraries only.
Example
For a sample of how to use _malloc_dbg
, see crt_dbg1
.