ABORT(3F) ABORT(3F)
abort - terminate Fortran program
call abort ( )
abort terminates the program which calls it, closing all open files
truncated to the current position of the file pointer. The abort usually
results in a core dump.
When invoked, abort prints ``Fortran abort routine called'' on the
standard error output. The shell prints the message ``abort - core
dumped'' if a core dump results.
abort(3C).
sh(1) in the User's Reference Manual.
Page 1
ABORT(3F) Last changed: 2-24-98
ABORT - Requests abort with traceback
CALL ABORT[(msg)]
UNICOS, UNICOS/mk, and IRIX systems
ABORT requests an abort with traceback and provides an optional
message written to the stderr file and creates a core dump.
When using the CF90 compiler or MIPSpro 7 Fortran 90 compiler on
UNICOS, UNICOS/mk, or IRIX, all arguments must be of default kind
unless documented otherwise. On UNICOS and UNICOS/mk, default kind is
KIND=8 for integer, real, complex, and logical arguments; on IRIX, the
default kind is KIND=4.
msg Optional message of type character for stderr file.
Application Programmer's Library Reference Manual, publication
SR-2165, for the printed version of this man page.
ABORT(3C) ABORT(3C)
abort - generate an abnormal termination signal
#include <stdlib.h>
void abort (void);
abort first closes all open files, stdio(3S) streams, directory streams
and message catalogue descriptors, if possible, then causes the signal
SIGABRT to be sent to the calling process.
sh(1), exit(2), kill(2), signal(2), catopen(3C), stdio(3S)
If SIGABRT is neither caught nor ignored, and the current directory is
writable, a core dump is produced and the message abort - core dumped is
written by the shell [see sh(1)].
Page 1
ABORT(3F) Last changed: 2-24-98
ABORT - Requests abort with traceback
CALL ABORT[(msg)]
UNICOS, UNICOS/mk, and IRIX systems
ABORT requests an abort with traceback and provides an optional
message written to the stderr file and creates a core dump.
When using the CF90 compiler or MIPSpro 7 Fortran 90 compiler on
UNICOS, UNICOS/mk, or IRIX, all arguments must be of default kind
unless documented otherwise. On UNICOS and UNICOS/mk, default kind is
KIND=8 for integer, real, complex, and logical arguments; on IRIX, the
default kind is KIND=4.
msg Optional message of type character for stderr file.
Application Programmer's Library Reference Manual, publication
SR-2165, for the printed version of this man page.
[ Back ]
|