|
NAMEpvm_pkmesg, pvm_pkmesgbody, pvm_upkmesg - Pack messages into other messages.SYNOPSISC int info = pvm_pkmesg( int bufid ) PARAMETERS
DESCRIPTIONThese functions are used to include messages in other messages, as data elements.pvm_pkmesg packs the specified message into the current send buffer. The entire body of the message is packed, along with header attributes: length context tag message tag wait identifier encoding checksum source and destination addressesThe buffer specified must not be the same as the current send buffer. Multiple messages can be packed into a single message, and packed messages can be mixed with any other data types. pvm_upkmesg unpacks a message from the current receive buffer, allocating a new message buffer for it. The body of the newly created message, and header attributes listed above, match the one originally packed using pvm_pkmesg. pvm_pkmesgbody is similar to pvm_pkmesg, but packs only the body of the specified message, omitting the header fields. In other words, it splices the messages together (the included message is left unaltered). When calling pvm_pkmesgbody, the encoding types of the two messages must match because the included message body is simply appended to the send buffer. Calls to pvm_pkmesgbody can be mixed with calls to pack any other data types. Note: pvm_upkmesgbody doesn't exist, because PVM doesn't keep track of the boundary between the two messages. EXAMPLESpvm_recv(-1, -1); pvm_initsend(PvmDataDefault); pvm_pkstr("here is the message I received..."); pvm_pkmesg(pvm_getrbuf()); ERRORSThe following error conditions can be returned by pvm_pkmesg, pvm_pkmesgbody or pvm_upkmesg:
SEE ALSOpvm_getrbuf(3PVM), pvm_getsbuf(3PVM), pvm_pack(3PVM),
Visit the GSP FreeBSD Man Page Interface. |