xref: /illumos-gate/usr/src/man/man9f/mcopymsg.9f (revision 4c87aefe8930bd07275b8dd2e96ea5f24d93a52e)
te
Copyright (c) 2007, Sun Microsystems, Inc. All Rights Reserved
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.
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.
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]
MCOPYMSG 9F "Oct 16, 2007"
NAME
mcopymsg - Copy message contents into a buffer and free message
SYNOPSIS

#include <sys/stream.h>
#include <sys/strsun.h>



void mcopymsg(mblk_t *mp, void *buf);
INTERFACE LEVEL

Solaris DDI specific (Solaris DDI).

PARAMETERS
mp

Message to be copied.

buf

Buffer in which to copy.

DESCRIPTION

The mcopymsg() function copies the contents of the specified message into the specified buffer. If the message consists of more than a single message block, the contents of each message block are placed consecutively into the buffer. After copying the message contents to buf, mcopymsg() frees the message mp.

The provided buffer must be large enough to accommodate the message. If the buffer is not large enough, the results are unspecified. The msgsize(9F) function can be used to calculate the total size of the message beforehand.

RETURN VALUES

None.

CONTEXT

This function can be called from user, kernel or interrupt context.

SEE ALSO

freemsg(9F), msgsize(9F)

STREAMS Programming Guide