Sun Java System Web Server 7.0 NSAPI Developer's Guide

PERM_FREE

The PERM_FREE macro is a platform-independent substitute for the C library routine free. It deallocates the persistent space previously allocated by PERM_MALLOC, PERM_CALLOC, or PERM_STRDUP.


Note –

Calling PERM_FREE for a block that was allocated with MALLOC, CALLOC, or STRTUP will not work.


Syntax

PERM_FREE(void *ptr);

Returns

void

Parameters

void *ptr is a (void *) pointer to block of memory. If the pointer is not the one created by PERM_MALLOC, PERM_CALLOC, or PERM_STRDUP, the behavior is undefined.

Example

char *name;
name = (char *) PERM_MALLOC(256);
...
PERM_FREE(name);

See Also

FREE, PERM_MALLOC, PERM_CALLOC, PERM_REALLOC, PERM_STRDUP