Performs a blocking put to a pipe.
a0tError a0FPut( | | | |
| a0tPipe | *pipe, | |
| a0tRequest | *request, | |
| a0tFormat | *format, | |
| void | *address, | |
| int | count );
| |
Name | rd/wr | Description |
pipe | read | Pipe to put to. |
request | write | Request descriptor to hold the status. |
format | read | Format of the data to send. |
address | write | Address of the data to send. |
count | read | Number of elements to send. |
This performs a blocking put to a given pipe pipe. A request is posted to send the data described by format, starting at address, with count elements. This request can cause a message to be immediately sent to the destination node or not, depending on the protocol used and the space left in the buffer of the pipe.
On return of this function, the variable pointed by request contains an opaque request that can be used later to check the completion status of the operation.
Error Code | Description |
A0Err...Some error occurred. | |
A0ErrOkSuccessful completion. | |
a0IFPut() a0FGet() a0IFGet() a0FSend() a0UseFormats() a0NewMapFormat() a0NewFunctionFormat() a0NewPipe()