![]() |
![]()
| ![]() |
![]()
NAMEpvm_perror - Prints message describing the last error returned by a PVM call. SYNOPSISC int info = pvm_perror( char *msg ) PARAMETERSDESCRIPTIONThe routine pvm_perror returns the error message of the last PVM call. The user can use msg to add additional information to the error message, for example, its location. Unless redirected, all stdout and stderr messages are placed in the file /tmp/pvml.<uid> on the master host. EXAMPLESC: if ( pvm_send( tid, msgtag ) ) pvm_perror(); Fortran: CALL PVMFSEND( TID, MSGTAG ) IF( INFO .LT. 0 ) CALL PVMFPERROR( 'Step 6', INFO ) ERRORSNo error condition is returned by pvm_perror.
|