[Previous] [Contents] [Next]

cfree()

Free allocated memory

Synopsis:

#include <malloc.h>

int cfree( void *ptr );

Library:

libc

Description:

The cfree() function deallocates the memory block specified by ptr, which was previously returned by a call to calloc(), malloc() or realloc().

It's safe to call cfree() with a NULL ptr.

Returns:

1

Classification:

Unix

Safety:
Cancellation point No
Interrupt handler No
Signal handler No
Thread Yes

Caveats:

Calling cfree() on a pointer already deallocated by a call to cfree(), free(), or realloc() could corrupt the memory allocator's data structures.

See also:

alloca(), calloc(), free(), malloc(), realloc(), sbrk()


[Previous] [Contents] [Next]