1181254a7Smrg /* Implementation of the PAUSE statement.
2*b1e83836Smrg Copyright (C) 2002-2022 Free Software Foundation, Inc.
3181254a7Smrg Contributed by Paul Brook <paul@nowt.org>
4181254a7Smrg
5181254a7Smrg This file is part of the GNU Fortran runtime library (libgfortran).
6181254a7Smrg
7181254a7Smrg Libgfortran is free software; you can redistribute it and/or
8181254a7Smrg modify it under the terms of the GNU General Public
9181254a7Smrg License as published by the Free Software Foundation; either
10181254a7Smrg version 3 of the License, or (at your option) any later version.
11181254a7Smrg
12181254a7Smrg Libgfortran is distributed in the hope that it will be useful,
13181254a7Smrg but WITHOUT ANY WARRANTY; without even the implied warranty of
14181254a7Smrg MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15181254a7Smrg GNU General Public License for more details.
16181254a7Smrg
17181254a7Smrg Under Section 7 of GPL version 3, you are granted additional
18181254a7Smrg permissions described in the GCC Runtime Library Exception, version
19181254a7Smrg 3.1, as published by the Free Software Foundation.
20181254a7Smrg
21181254a7Smrg You should have received a copy of the GNU General Public License and
22181254a7Smrg a copy of the GCC Runtime Library Exception along with this program;
23181254a7Smrg see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
24181254a7Smrg <http://www.gnu.org/licenses/>. */
25181254a7Smrg
26181254a7Smrg #include "libgfortran.h"
27181254a7Smrg #include <string.h>
28181254a7Smrg
29181254a7Smrg #ifdef HAVE_UNISTD_H
30181254a7Smrg #include <unistd.h>
31181254a7Smrg #endif
32181254a7Smrg
33181254a7Smrg
34181254a7Smrg static void
do_pause(void)35181254a7Smrg do_pause (void)
36181254a7Smrg {
37181254a7Smrg char buff[4];
38181254a7Smrg estr_write ("To resume execution, type go. "
39181254a7Smrg "Other input will terminate the job.\n");
40181254a7Smrg
41181254a7Smrg fgets(buff, 4, stdin);
42181254a7Smrg if (strncmp(buff, "go\n", 3) != 0)
43181254a7Smrg stop_string ('\0', 0, false);
44181254a7Smrg estr_write ("RESUMED\n");
45181254a7Smrg }
46181254a7Smrg
47181254a7Smrg /* A numeric PAUSE statement. */
48181254a7Smrg
49181254a7Smrg extern void pause_numeric (GFC_INTEGER_8);
50181254a7Smrg export_proto(pause_numeric);
51181254a7Smrg
52181254a7Smrg void
pause_numeric(GFC_INTEGER_8 code)53181254a7Smrg pause_numeric (GFC_INTEGER_8 code)
54181254a7Smrg {
55181254a7Smrg st_printf ("PAUSE %ld\n", (long) code);
56181254a7Smrg do_pause ();
57181254a7Smrg }
58181254a7Smrg
59181254a7Smrg /* A character string or blank PAUSE statement. */
60181254a7Smrg
61181254a7Smrg extern void pause_string (char *string, size_t len);
62181254a7Smrg export_proto(pause_string);
63181254a7Smrg
64181254a7Smrg void
pause_string(char * string,size_t len)65181254a7Smrg pause_string (char *string, size_t len)
66181254a7Smrg {
67181254a7Smrg struct iovec iov[3];
68181254a7Smrg
69181254a7Smrg iov[0].iov_base = (char*) "PAUSE ";
70181254a7Smrg iov[0].iov_len = strlen (iov[0].iov_base);
71181254a7Smrg iov[1].iov_base = string;
72181254a7Smrg iov[1].iov_len = len;
73181254a7Smrg iov[2].iov_base = (char*) "\n";
74181254a7Smrg iov[2].iov_len = 1;
75181254a7Smrg estr_writev (iov, 3);
76181254a7Smrg
77181254a7Smrg do_pause ();
78181254a7Smrg }
79