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
|
.TH "freecon" "3" "1 January 2004" "russell@coker.com.au" "SELinux API documentation"
.SH "NAME"
freecon, freeconary \- free memory associated with SELinux security contexts.
.SH "SYNOPSIS"
.B #include <selinux/selinux.h>
.sp
.BI "void freecon(security_context_t "con );
.BI "void freeconary(security_context_t *" con );
.SH "DESCRIPTION"
.B freecon
frees the memory allocated for a security context.
.B freeconary
frees the memory allocated for a context array.
If
.I con
is NULL, no operation is performed.
.SH "SEE ALSO"
.BR selinux "(8)"
|