_msize_dbg
(디버그 버전에만 해당) 힙의 메모리 블록의 크기를 계산합니다.
size_t _msize_dbg(
void *userData,
int blockType
);
매개 변수
userData
크기를 결정하는 메모리 블록에 대한 포인터입니다.blockType
지정된 메모리 블록의 형식: _CLIENT_BLOCK 또는 _NORMAL_BLOCK.
반환 값
성공적으로 완료됬을 때, _msize_dbg 는 지정 된 메모리 블록의 크기를 바이트 단위로 반환합니다. 그렇지 않으면 NULL을 반환합니다.
설명
_msize_dbg는 calloc 함수의 디버그 버전입니다. _DEBUG를 정의 하지 않으면, _msize_dbg 의 각 호출은 _msize 의 호출에 감소됩니다. _msize 와 _msize_dbg 모두 기본 힙에서 메모리 블록의 크기를 계산 하지만 _msize_dbg 은 두 디버깅 기능을 추가합니다: 리턴 사이즈 메모리 블록의 사용자 부분의 양쪽에 버퍼를 포함하고, 특정 블록 타입에 사이즈 계산을 허용
기본 힙의 디버그 버전에서 메모리 블록이 어떻게 할당되고 초기화되고 관리되는지에 대한 자세한 내용은 CRT 디버그 힙 정보 를 참조하십시오. 할당 블록 종류 및 사용 방법에 대한 더 자세한 내용은 디버그 힙의 블록 종류을 참조하십시오. 호출 표준 힙 함수 및 응용 프로그램의 디버그 빌드에서 디버그 버전의 차이점에 대한 내용은 힙 할당 함수의 디버그 버전를 참조하십시오.
이 함수는 매개변수를 인증합니다. 매개 변수 유효성 검사이 널 포인터일 경우, _msize에 설명된 대로, memblock는 잘못된 매개 변수 처리기를 호출합니다. 오류가 처리가된 경우, 함수는 errno 을 EINVAL 으로 설정하고, -1을 반환합니다.
요구 사항
루틴 |
필수 헤더 |
---|---|
_msize_dbg |
<crtdbg.h> |
호환성에 대한 자세한 내용은 소개 단원의 호환성 부분을 참조하십시오.
라이브러리
C 런타임 라이브러리 의 유일한 디버그 버전입니다.
예제
// crt_msize_dbg.c
// compile with: /MTd
/*
* This program allocates a block of memory using _malloc_dbg
* and then calls _msize_dbg to display the size of that block.
* Next, it uses _realloc_dbg to expand the amount of
* memory used by the buffer and then calls _msize_dbg again to
* display the new amount of memory allocated to the buffer.
*/
#include <stdio.h>
#include <malloc.h>
#include <stdlib.h>
#include <crtdbg.h>
int main( void )
{
long *buffer, *newbuffer;
size_t size;
/*
* Call _malloc_dbg to include the filename and line number
* of our allocation request in the header
*/
buffer = (long *)_malloc_dbg( 40 * sizeof(long), _NORMAL_BLOCK, __FILE__, __LINE__ );
if( buffer == NULL )
exit( 1 );
/*
* Get the size of the buffer by calling _msize_dbg
*/
size = _msize_dbg( buffer, _NORMAL_BLOCK );
printf( "Size of block after _malloc_dbg of 40 longs: %u\n", size );
/*
* Reallocate the buffer using _realloc_dbg and show the new size
*/
newbuffer = _realloc_dbg( buffer, size + (40 * sizeof(long)), _NORMAL_BLOCK, __FILE__, __LINE__ );
if( newbuffer == NULL )
exit( 1 );
buffer = newbuffer;
size = _msize_dbg( buffer, _NORMAL_BLOCK );
printf( "Size of block after _realloc_dbg of 40 more longs: %u\n", size );
free( buffer );
exit( 0 );
}
Output
Size of block after _malloc_dbg of 40 longs: 160
Size of block after _realloc_dbg of 40 more longs: 320
해당 .NET Framework 항목
해당 사항 없음. 표준 C 함수를 호출하려면 PInvoke를 사용합니다. 자세한 내용은 플랫폼 호출 예제를 참조하십시오.