Multi-ApplicationOnlineProfiling
2.1
|
Read and write calls. More...
Functions | |
int | VMPI_Stream_read (VMPI_Stream *st, char *buff, unsigned int block_count, VMPI_Stream_blocking block) |
Read data from a VMPI_Stream. More... | |
int | VMPI_Stream_write (VMPI_Stream *st, char *buff, unsigned int block_count) |
Write data to a VMPI_Stream. More... | |
int | VMPI_Stream_test_read (VMPI_Stream *st) |
Is this stream ready for read ? More... | |
int | VMPI_Stream_test_write (VMPI_Stream *st) |
Is this stream ready for writing ? More... | |
Read and write calls.
int VMPI_Stream_read | ( | VMPI_Stream * | st, |
char * | buff, | ||
unsigned int | block_count, | ||
VMPI_Stream_blocking | block | ||
) |
Read data from a VMPI_Stream.
st | target stream |
buff | buffer to write to |
block_count | number of blocks |
block | should this call be a blocking one |
Definition at line 493 of file VMPI_stream.c.
int VMPI_Stream_test_read | ( | VMPI_Stream * | st | ) |
Is this stream ready for read ?
st | target stream |
Definition at line 655 of file VMPI_stream.c.
int VMPI_Stream_test_write | ( | VMPI_Stream * | st | ) |
Is this stream ready for writing ?
st | target stream |
Definition at line 683 of file VMPI_stream.c.
int VMPI_Stream_write | ( | VMPI_Stream * | st, |
char * | buff, | ||
unsigned int | block_count | ||
) |
Write data to a VMPI_Stream.
st | target stream |
buff | buffer to read from |
block_count | number of blocks |
Definition at line 395 of file VMPI_stream.c.