1 | !DECK XERHLT |
---|
2 | SUBROUTINE XERHLT (MESSG) |
---|
3 | !***BEGIN PROLOGUE XERHLT |
---|
4 | !***SUBSIDIARY |
---|
5 | !***PURPOSE Abort program execution and print error message. |
---|
6 | !***LIBRARY SLATEC (XERROR) |
---|
7 | !***CATEGORY R3C |
---|
8 | !***TYPE ALL (XERHLT-A) |
---|
9 | !***KEYWORDS ABORT PROGRAM EXECUTION, ERROR, XERROR |
---|
10 | !***AUTHOR Jones, R. E., (SNLA) |
---|
11 | !***DESCRIPTION |
---|
12 | ! |
---|
13 | ! Abstract |
---|
14 | ! ***Note*** machine dependent routine |
---|
15 | ! XERHLT aborts the execution of the program. |
---|
16 | ! The error message causing the abort is given in the calling |
---|
17 | ! sequence, in case one needs it for printing on a dayfile, |
---|
18 | ! for example. |
---|
19 | ! |
---|
20 | ! Description of Parameters |
---|
21 | ! MESSG is as in XERMSG. |
---|
22 | ! |
---|
23 | !***REFERENCES R. E. Jones and D. K. Kahaner, XERROR, the SLATEC |
---|
24 | ! Error-handling Package, SAND82-0800, Sandia |
---|
25 | ! Laboratories, 1982. |
---|
26 | !***ROUTINES CALLED (NONE) |
---|
27 | !***REVISION HISTORY (YYMMDD) |
---|
28 | ! 790801 DATE WRITTEN |
---|
29 | ! 861211 REVISION DATE from Version 3.2 |
---|
30 | ! 891214 Prologue converted to Version 4.0 format. (BAB) |
---|
31 | ! 900206 Routine changed from user-callable to subsidiary. (WRB) |
---|
32 | ! 900510 Changed calling sequence to delete length of character |
---|
33 | ! and changed routine name from XERABT to XERHLT. (RWC) |
---|
34 | ! 920501 Reformatted the REFERENCES section. (WRB) |
---|
35 | !***END PROLOGUE XERHLT |
---|
36 | CHARACTER(len=*) :: MESSG |
---|
37 | !***FIRST EXECUTABLE STATEMENT XERHLT |
---|
38 | STOP |
---|
39 | END SUBROUTINE XERHLT |
---|