GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
PERROR(3PVM) PVM Version 3.4 PERROR(3PVM)

pvm_perror - Prints message describing the last error returned by a PVM call.

C	int info = pvm_perror( char *msg )

Fortran call pvmfperror( msg, info )

msg
Character string supplied by the user which will be prepended to the error message of the last PVM call.
info
Integer status code returned by the routine. Values less than zero indicate an error.

The 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.

C:
	if ( pvm_send( tid, msgtag ) )
		pvm_perror();

Fortran:
	CALL PVMFSEND( TID, MSGTAG )
	IF( INFO .LT. 0 ) CALL PVMFPERROR( 'Step 6', INFO )

No error condition is returned by pvm_perror.
30 August, 1993

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.