Chapter Contents |
Previous |
Next |
pdel |
Portability: | SAS/C extension |
SYNOPSIS | |
DESCRIPTION | |
RETURN VALUE | |
ERRORS | |
CAUTION | |
EXAMPLE | |
RELATED FUNCTIONS | |
SEE ALSO |
SYNOPSIS |
#include <pool.h> void pdel(POOL_t *p);
DESCRIPTION |
pdel
releases all elements of a storage pool (allocated by the
pool
function) and frees associated storage.
p
is a pointer that points to the storage pool. It is not necessary
to free all the elements of the pool before deleting it.
RETURN VALUE |
pdel
has no return value.
ERRORS |
CAUTION |
Deleting a storage pool twice or calling
pdel
with a random argument usually results in
an ABEND.
Do not reference pool elements after the pool has been deleted.
EXAMPLE |
RELATED FUNCTIONS |
SEE ALSO |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright © 2001 by SAS Institute Inc., Cary, NC, USA. All rights reserved.