Merge commit '9276b3991ba20d5a5660887ba81b0bc7bed25a0c'
[unleashed.git] / share / man / man9f / biofini.9f
blob0fd09d444cb09b68d86ebc503cd7b71683e5bc29
1 '\" te
2 .\" Copyright (c) 2009 Sun Microsystems, Inc.,  All Rights Reserved
3 .\" The contents of this file are subject to the terms of the Common Development and Distribution License (the "License").  You may not use this file except in compliance with the License.
4 .\" You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE or http://www.opensolaris.org/os/licensing.  See the License for the specific language governing permissions and limitations under the License.
5 .\" When distributing Covered Code, include this CDDL HEADER in each file and include the License file at usr/src/OPENSOLARIS.LICENSE.  If applicable, add the following below this CDDL HEADER, with the fields enclosed by brackets "[]" replaced with your own identifying information: Portions Copyright [yyyy] [name of copyright owner]
6 .TH BIOFINI 9F "Nov 20, 1996"
7 .SH NAME
8 biofini \- uninitialize a buffer structure
9 .SH SYNOPSIS
10 .LP
11 .nf
12 #include <sys/ddi.h>
13 #include <sys/sunddi.h>
15 \fBvoid\fR \fBbiofini\fR(\fBstruct buf *\fR\fIbp\fR);
16 .fi
18 .SH INTERFACE LEVEL
19 .sp
20 .LP
21 Solaris DDI specific (Solaris DDI).
22 .SH PARAMETERS
23 .sp
24 .ne 2
25 .na
26 \fB\fIbp\fR\fR
27 .ad
28 .RS 6n
29 Pointer to the buffer header structure.
30 .RE
32 .SH DESCRIPTION
33 .sp
34 .LP
35 The \fBbiofini()\fR function uninitializes a \fBbuf\fR(9S) structure. If a
36 buffer structure has been allocated and initialized using \fBkmem_alloc\fR(9F)
37 and \fBbioinit\fR(9F) it needs to be uninitialized using \fBbiofini()\fR before
38 calling \fBkmem_free\fR(9F). It is not necessary to call \fBbiofini()\fR before
39 freeing a buffer structure using \fBfreerbuf\fR(9F) because \fBfreerbuf()\fR
40 will call \fBbiofini()\fR directly.
41 .SH CONTEXT
42 .sp
43 .LP
44 The \fBbiofini()\fR function can be called from any context.
45 .SH EXAMPLES
46 .LP
47 \fBExample 1 \fRUsing \fBbiofini()\fR
48 .sp
49 .in +2
50 .nf
51 struct buf *bp = kmem_alloc(biosize(), KM_SLEEP);       
52 bioinit(bp);    
53 /* use buffer */        
54 biofini(bp);    
55 kmem_free(bp, biosize());
56 .fi
57 .in -2
59 .SH SEE ALSO
60 .sp
61 .LP
62 \fBbioinit\fR(9F), \fBbioreset\fR(9F), \fBbiosize\fR(9F), \fBfreerbuf\fR(9F),
63 \fBkmem_alloc\fR(9F), \fBkmem_free\fR(9F), \fBbuf\fR(9S)
64 .sp
65 .LP
66 \fIWriting Device Drivers\fR