MPI_Bsend(3)               (10/28/1994)              MPI_Bsend(3)



     NAME
          MPI_Bsend - Basic send with user-specified buffering


     INPUT PARAMETERS
          buf  - initial address of send buffer (choice)
          count
               - number of elements in send buffer (nonnegative
               integer)
          datatype
               - datatype of each send buffer element (handle)
          dest - rank of destination (integer)
          tag  - message tag (integer)
          comm - communicator (handle)


     NOTES
          This send is provided as a convenience function; it allows
          the user to send messages without worring about where they
          are buffered (because the user MUST have provided buffer
          space with MPI_Buffer_attach).

     SYNOPSIS
          #include "mpi.h"
          int MPI_Bsend( buf, count, datatype, dest, tag, comm )
          void             *buf;
          int              count, dest, tag;
          MPI_Datatype     datatype;
          MPI_Comm         comm;



     LOCATION
           bsend.c





















     Page 1                                           (printed 3/8/95)