Museum

Home

Lab Overview

Retrotechnology Articles

Online Manuals

⇒ pvmfsetsbuf(3PVM) — Parallel Software Environment 1.9

Media Vault

Software Library

Restoration Projects

Artifacts Sought

Related Articles

pvm_setrbuf(3PVM)

SETSBUF(3PVM)  —  Subroutines

NAME

pvm_setsbuf − Switches the active send buffer. 
 

SYNOPSIS

Cint oldbuf = pvm_setsbuf( int bufid )
 
Fortrancall pvmfsetsbuf( bufid, oldbuf )

 

PARAMETERS

bufidInteger the message buffer identifier for the new active send buffer.  A value of 0 indicates the default receive buffer. 

oldbufInteger returning the message buffer identifier for the previous active send buffer. 
 

DESCRIPTION

The routine pvm_setsbuf switches the active send buffer to bufid and saves the previous active send buffer oldbuf.  If bufid is set to 0 then the present active send buffer is saved and no active send buffer exists. 

The routine is required when managing multiple message buffers.  For example switching back and forth between two buffers.  One buffer could be used to send information to a graphical interface while a second buffer could be used send data to other tasks in the application. 
 

EXAMPLES

C:
sbuf1 = pvm_setsbuf( sbuf2 );
Fortran:
CALL PVMFSETSBUF( NEWBUF, OLDBUF )

 

ERRORS

These error conditions can be returned by pvm_setsbuf

PvmBadParam
giving an invalid bufid.

PvmNoSuchBuf
switching to a non-existent message buffer.

SEE ALSO

pvm_setrbuf(3PVM)

  —  30 August, 1993

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