manpages.info - online man pages   

Mac OS X / Darwin man pages : free (3)
free (3)

Table of Contents

Name

malloc, calloc, valloc, realloc, free, malloc_size, malloc_good_size memory allocation

Synopsis

#include <stdlib.h>

void *
malloc(size_t size);

void *
calloc(size_t count, size_t size);

void *
valloc(size_t size);

void *
realloc(void *ptr, size_t size);

void
free(void *ptr);

size_t
malloc_size(void *ptr);

size_t
malloc_good_size(size_t size);

Description

The malloc(), calloc(), valloc(), and realloc() functions allocate memory. The allocated memory is aligned such that it can be used for any data type, including AltiVec-related types. The free() function frees allocations that were created via the preceding allocation functions. The malloc_size() and malloc_good_size() functions provide information related to the amount of padding space at the end of allocations.

The malloc() function allocates size bytes of memory and returns a pointer to the allocated memory. malloc() returns a NULL pointer if there is an error.

The calloc() function contiguously allocates enough space for count objects that are size bytes of memory each and returns a pointer to the allocated memory. The allocated memory is filled with bytes of value zero. calloc() returns a NULL pointer if there is an error.

The valloc() function allocates size bytes of memory and returns a pointer to the allocated memory. The allocated memory is aligned on a page boundary. valloc() returns a NULL pointer if there is an error.

The realloc() function tries to change the size of the allocation pointed to by ptr to size, and return ptr. If there is not enough room to enlarge the memory allocation pointed to by ptr, realloc() creates a new allocation, copies as much of the old data pointed to by ptr as will fit to the new allocation, frees the old allocation, and returns a pointer to the allocated memory. realloc() returns a NULL pointer if there is an error, and the allocation pointed to by ptr is still valid.

The free() function deallocates the memory allocation pointed to by ptr.

The malloc_size() function returns the size of the memory block that backs the allocation pointed to by ptr. The memory block size is always at least as large as the allocation it backs, and may be larger.

The malloc_good_size() function rounds size up to a value that the allocator implementation can allocate without adding any padding and returns that rounded up value.

Return Values

If successful, the malloc(), calloc(), and valloc() functions return a pointer to allocated memory. If there is an error, they return a NULL pointer and set errno to ENOMEM.

If successful, the realloc() function returns a pointer to allocated memory. If there is an error, it returns a NULL pointer and sets errno to ENOMEM.

The free() function does not return a value.

Debugging Allocation Errors

A number of facilities are provided to aid in debugging allocation errors in applications. These facilities are primarily controlled via environment variables. The recognized environment variables and their meanings are documented below.

Environment

The following environment variables change the behavior of the allocation-related functions.

MallocLogFile <f>
Create/append messages to the given file path <f> instead of writing to the standard error.

MallocGuardEdges
If set, add a guard page before and after each large block.

MallocDoNotProtectPrelude
If set, do not add a guard page before large blocks, even if the MallocGuardEdges environment variable is set.

MallocDoNotProtectPostlude
If set, do not add a guard page after large blocks, even if the MallocGuardEdges environment variable is set.

MallocStackLogging
If set, record all stacks, so that tools like leaks can be used.

MallocStackLoggingNoCompact If set, record all stacks in a manner that is compatible with the malloc_history program.

MallocScribble
If set, fill memory that has been deallocated with 0x55 bytes. This increases the likelihood that a program will fail due to accessing memory that is no longer allocated.

MallocCheckHeapStart <s>
If set, specifies the number of allocations <s> to wait before begining periodic heap checks every <n> as specified by MallocCheckHeapEach. If MallocCheckHeapStart is set but MallocCheckHeapEach is not specified, the default check repetition is 1000.

MallocCheckHeapEach <n>
If set, run a consistency check on the heap every <n> operations. MallocCheckHeapEach is only meaningful if MallocCheckHeapStart is also set.

MallocCheckHeapSleep <t>
Sets the number of seconds to sleep (waiting for a debugger to attach) when MallocCheckHeapStart is set and a heap corruption is detected. The default is 100 seconds. Setting this to zero means not to sleep at all. Setting this to a negative number means to sleep (for the positive number of seconds) only the very first time a heap corruption is detected.

MallocCheckHeapAbort <b>
When MallocCheckHeapStart is set and this is set to a non-zero value, causes abort(3) to be called if a heap corruption is detected, instead of any sleeping.

MallocBadFreeAbort <b>
If set to a non-zero value, causes abort(3) to be called if the pointer passed to free(3) was previously freed, or is otherwise illegal.

MallocHelp
If set, print a list of environment variables that are paid heed to by the allocation-related functions, along with short descriptions. The list should correspond to this documentation.

Diagnostic Messages

See Also

leaks(1) , malloc_history(1) , abort(3)
/Developer/Documentation/ReleaseNotes/MallocOptions.html


Table of Contents