Unix and Linux Discussions Tagged with status |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
19 |
33,339 |
What is on Your Mind? |
|
|
|
2 |
5,565 |
UNIX for Beginners Questions & Answers |
|
|
|
16 |
9,039 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
14,854 |
Programming |
|
|
|
5 |
5,870 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
8,940 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,316 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,882 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,742 |
What is on Your Mind? |
|
|
|
9 |
4,148 |
UNIX for Beginners Questions & Answers |
|
|
|
0 |
3,008 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
7,283 |
What is on Your Mind? |
|
|
|
1 |
6,083 |
Programming |
|
|
|
9 |
3,469 |
Shell Programming and Scripting |
|
|
|
6 |
68,100 |
What is on Your Mind? |
|
|
|
1 |
3,854 |
Solaris |
|
|
|
0 |
2,734 |
Shell Programming and Scripting |
|
|
|
1 |
3,426 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,958 |
Shell Programming and Scripting |
|
|
|
13 |
13,569 |
Shell Programming and Scripting |
|
|
|
1 |
307,680 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
5,613 |
Shell Programming and Scripting |
|
|
|
2 |
17,459 |
UNIX for Advanced & Expert Users |
|
|
|
8 |
6,084 |
Shell Programming and Scripting |
|
|
|
4 |
4,663 |
Shell Programming and Scripting |
|
|
|
0 |
1,988 |
UNIX and Linux RSS News |
|
|
|
4 |
9,600 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
1,824 |
UNIX and Linux RSS News |
|
|
|
3 |
7,496 |
Programming |
|
|
|
3 |
16,279 |
Shell Programming and Scripting |
|
|
|
4 |
6,106 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
3,421 |
Shell Programming and Scripting |
|
|
|
0 |
1,794 |
UNIX and Linux RSS News |
|
|
|
5 |
63,627 |
Solaris |
|
|
|
6 |
2,453 |
Shell Programming and Scripting |
|
|
|
1 |
4,850 |
HP-UX |
|
|
|
3 |
15,871 |
Programming |
|
|
|
1 |
2,787 |
Shell Programming and Scripting |
|
|
|
1 |
6,653 |
UNIX for Advanced & Expert Users |
|
|
|
0 |
1,763 |
Software Releases - RSS News |
MPI_Status_f2c(3OpenMPI) MPI_Status_f2c(3OpenMPI)
NAME
MPI_Status_f2c, MPI_Status_c2f - Translates a C status into a Fortran status, or vice versa.
SYNTAX
C Syntax
#include <mpi.h>
int MPI_Status_f2c(MPI_Fint *f_status, MPI_Status *c_status)
int MPI_Status_c2f(MPI_Status *c_status, MPI_Fint *f_status)
DESCRIPTION
These two procedures are provided in C to convert from a Fortran status (which is an array of integers) to a C status (which is a struc-
ture), and vice versa. The conversion occurs on all the information in status, including that which is hidden. That is, no status informa-
tion is lost in the conversion.
When using MPI_Status_f2c, if f_status is a valid Fortran status, but not the Fortran value of MPI_STATUS_IGNORE or MPI_STATUSES_IGNORE,
then MPI_Status_f2c returns in c_status a valid C status with the same content. If f_status is the Fortran value of MPI_STATUS_IGNORE or
MPI_STATUSES_IGNORE, or if f_status is not a valid Fortran status, then the call is erroneous.
When using MPI_Status_c2f, the opposite conversion is applied. If c_status is MPI_STATUS_IGNORE or MPI_STATUSES_IGNORE, or if c_status is
not a valid C status, then the call is erroneous.
The C status has the same source, tag and error code values as the Fortran status, and returns the same answers when queried for count,
elements, and cancellation. The conversion function may be called with a Fortran status argument that has an undefined error field, in
which case the value of the error field in the C status argument is undefined.
Open MPI 1.2 September 2006 MPI_Status_f2c(3OpenMPI)