Skip to content

Latest commit

 

History

History
66 lines (46 loc) · 2.91 KB

File metadata and controls

66 lines (46 loc) · 2.91 KB
descriptiontitlems.dateapi_nameapi_locationapi_typetopic_typef1_keywordshelpviewer_keywords
Learn more about: free
free
4/2/2020
free
_o_free
msvcrt.dll
msvcr80.dll
msvcr90.dll
msvcr100.dll
msvcr100_clr0400.dll
msvcr110.dll
msvcr110_clr0400.dll
msvcr120.dll
msvcr120_clr0400.dll
ucrtbase.dll
api-ms-win-crt-heap-l1-1-0.dll
DLLExport
apiref
free
memory blocks, deallocating
free function

free

Deallocates or frees a memory block.

Syntax

voidfree( void*memblock );

Parameters

memblock
Previously allocated memory block to be freed.

Remarks

The free function deallocates a memory block (memblock) that was previously allocated by a call to calloc, malloc, or realloc. The number of freed bytes is equivalent to the number of bytes requested when the block was allocated (or reallocated, for realloc). If memblock is NULL, the pointer is ignored, and free immediately returns. Attempting to free an invalid pointer (a pointer to a memory block that wasn't allocated by calloc, malloc, or realloc) may affect subsequent allocation requests and cause errors.

If an error occurs in freeing the memory, errno is set with information from the operating system on the nature of the failure. For more information, see errno, _doserrno, _sys_errlist, and _sys_nerr.

After a memory block has been freed, _heapmin minimizes the amount of free memory on the heap by coalescing the unused regions and releasing them back to the operating system. Freed memory that isn't released to the operating system is restored to the free pool and is available for allocation again.

When the application is linked with a debug version of the C run-time libraries, free resolves to _free_dbg. For more information about how the heap is managed during the debugging process, see The CRT debug heap.

free is marked __declspec(noalias), meaning that the function is guaranteed not to modify global variables. For more information, see noalias.

To free memory allocated with _malloca, use _freea.

By default, this function's global state is scoped to the application. To change this behavior, see Global state in the CRT.

Requirements

FunctionRequired header
free<stdlib.h> and <malloc.h>

For more compatibility information, see Compatibility.

Example

See the example for malloc.

See also

Memory allocation
_alloca
calloc
malloc
realloc
_free_dbg
_heapmin
_freea

close