1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29
|
.TH "AUPARSE_DESTROY" "3" "Feb 2007" "Red Hat" "Linux Audit API"
.SH NAME
auparse_destroy \- release instance of parser
.SH "SYNOPSIS"
.B #include <auparse.h>
.sp
.BI "void auparse_destroy(auparse_state_t *" au);"
.B void auparse_destroy_ext(auparse_state_t *au, auparse_destroy_what_t what);
.SH "DESCRIPTION"
.B auparse_destroy
frees all data structures and closes file descriptors.
.B auparse_destroy_ext
frees data structures based on what. What can be AUPARSE_DESTROY_ALL to release everything or AUPARSE_DESTROY_COMMON to release everything but the uid and gid lookup cache.
.SH "RETURN VALUE"
None.
.SH "SEE ALSO"
.BR auparse_init (3),
.BR auparse_reset (3).
.SH AUTHOR
Steve Grubb
|