Museum

Home

Lab Overview

Retrotechnology Articles

⇒ Online Manual

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

allocb(9F)

copyb(9F)

msgb(9S)

copymsg(9F)

NAME

copymsg − copy a message

SYNOPSIS

#include <sys/stream.h>
mblk_t ∗copymsg(mblk_t ∗mp);

INTERFACE LEVEL

Architecture independent level 1 (DDI/DKI). 

ARGUMENTS

mp Pointer to the message to be copied. 

DESCRIPTION

copymsg() forms a new message by allocating new message blocks, and copying the contents of the message referred to by mp (using the copyb(9F) function). It returns a pointer to the new message. 

RETURN VALUES

If the copy is successful, copymsg() returns a pointer to the new message.  Otherwise, it returns a NULL pointer. 

CONTEXT

copymsg() can be called from user or interrupt context. 

EXAMPLES

The routine lctouc() converts all the lowercase ASCII characters in the message to uppercase.  If the reference count is greater than one (line 8), then the message is shared, and must be copied before changing the contents of the data buffer.  If the call to the copymsg() function fails (line 9), return NULL (line 10), otherwise, free the original message (line 11).  If the reference count was equal to 1, the message can be modified.  For each character (line 16) in each message block (line 15), if it is a lowercase letter, convert it to an uppercase letter (line 18).  A pointer to the converted message is returned (line 21). 

 1  mblk_t ∗lctouc(mp)
 2mblk_t ∗mp;
 3  {
 4mblk_t ∗cmp;
 5mblk_t ∗tmp;
 6unsigned char ∗cp;
 7
 8if (mp->b_datap->db_ref > 1) {
 9if ((cmp = copymsg(mp)) == NULL)
10return (NULL);
11freemsg(mp);
12} else {
13cmp = mp;
14}
15for (tmp = cmp; tmp; tmp = tmp->b_cont) {
16for (cp = tmp->b_rptr; cp < tmp->b_wptr; cp++) {
17if ((∗cp <= ’z’) && (∗cp >= ’a’))
18∗cp -= 0x20;
19}
20}
21return(cmp);
22  }

SEE ALSO

allocb(9F), copyb(9F), msgb(9S)

Writing Device Drivers
STREAMS Programming Guide

SunOS 5.5/SPARC  —  Last change: 27 Jun 1995

Typewritten Software • bear@typewritten.org • Edmonds, WA 98026