'\" te .\" Copyright (C) 1998-2003, Carnegie Mellon Univeristy. All Rights Reserved. .\" Portions Copyright (C) 2003, Sun Microsystems, Inc. All Rights Reserved .TH sasl_set_alloc 3SASL "22 Oct 2003" "SunOS 5.11" "Simple Authentication Security Layer Library Functions" .SH NAME sasl_set_alloc \- set the memory allocation functions used by the SASL library .SH SYNOPSIS .LP .nf \fBcc\fR [ \fIflag\fR ... ] \fIfile\fR ... \fB-lsasl\fR [ \fIlibrary\fR ... ] #include \fBvoid\fR \fBsasl_set_alloc\fR(\fBsasl_malloc_t *\fR\fIm\fR, \fBsasl_calloc_t *\fR\fIc\fR, \fBsasl_realloc_t *\fR\fIr\fR, \fBsasl_free_t *\fR\fIf\fR); .fi .SH DESCRIPTION .sp .LP Use the \fBsasl_set_alloc()\fR interface to set the memory allocation routines that the SASL library and plug-ins will use. .SH PARAMETERS .sp .ne 2 .mk .na \fB\fIc\fR\fR .ad .RS 5n .rt A pointer to a \fBcalloc()\fR function .RE .sp .ne 2 .mk .na \fB\fIf\fR\fR .ad .RS 5n .rt A pointer to a \fBfree()\fR function .RE .sp .ne 2 .mk .na \fB\fIm\fR\fR .ad .RS 5n .rt A pointer to a\fBmalloc()\fR function .RE .sp .ne 2 .mk .na \fB\fIr\fR\fR .ad .RS 5n .rt A pointer to a \fBrealloc()\fR function .RE .SH RETURN VALUES .sp .LP \fBsasl_set_alloc()\fR has no return values. .SH ATTRIBUTES .sp .LP See \fBattributes\fR(5) for descriptions of the following attributes: .sp .sp .TS tab() box; cw(2.75i) |cw(2.75i) lw(2.75i) |lw(2.75i) . ATTRIBUTE TYPEATTRIBUTE VALUE _ Availabilitysystem/library/security/libsasl _ Interface StabilityObsolete _ MT-LevelUnsafe .TE .SH SEE ALSO .sp .LP \fBattributes\fR(5) .SH NOTES .sp .LP While most of \fBlibsasl\fR is MT-Safe, \fBsasl_set_*\fR modifies the global state and should be considered Unsafe.