|
libxmp/libxmpf in Omni Compiler
1.3.4
|
#include <stdlib.h>#include <pthread.h>#include "xmp_internal.h"#include <time.h>#include <sys/time.h>
Data Structures | |
| struct | _XMP_postreq_info |
| struct | _XMP_postreq |
Typedefs | |
| typedef struct _XMP_postreq_info | _XMP_postreq_info_t |
| typedef struct _XMP_postreq | _XMP_postreq_t |
Functions | |
| void | _xmp_mpi_post_wait_initialize () |
| Initialize environment for post/wait directives. More... | |
| void | receive_request (int *node, int *tag) |
| void | _xmp_mpi_post (const int node, int tag) |
| Post operation. More... | |
| void | _xmp_mpi_wait_noargs () |
| Wait operation without node-ref and tag. More... | |
| void | _xmp_mpi_wait_node (const int node) |
| Wait operation with node-ref. More... | |
| void | _xmp_mpi_wait (const int node, const int tag) |
| Wait operation with node-ref and tag. More... | |
| typedef struct _XMP_postreq_info _XMP_postreq_info_t |
| typedef struct _XMP_postreq _XMP_postreq_t |
| void _xmp_mpi_post | ( | const int | node, |
| int | tag | ||
| ) |
Post operation.
| [in] | node | node number |
| [in] | tag | tag |

| void _xmp_mpi_post_wait_initialize | ( | ) |
Initialize environment for post/wait directives.

| void _xmp_mpi_wait | ( | const int | node, |
| const int | tag | ||
| ) |
Wait operation with node-ref and tag.
| [in] | node | node number |
| [in] | tag | tag |

| void _xmp_mpi_wait_noargs | ( | ) |
Wait operation without node-ref and tag.

| void _xmp_mpi_wait_node | ( | const int | node | ) |
Wait operation with node-ref.
| [in] | node | node number |

| void receive_request | ( | int * | node, |
| int * | tag | ||
| ) |