xref: /netbsd-src/external/gpl3/gcc.old/dist/libgfortran/runtime/pause.c (revision 4c3eb207d36f67d31994830c0a694161fc1ca39b)
1627f7eb2Smrg /* Implementation of the PAUSE statement.
2*4c3eb207Smrg    Copyright (C) 2002-2020 Free Software Foundation, Inc.
3627f7eb2Smrg    Contributed by Paul Brook <paul@nowt.org>
4627f7eb2Smrg 
5627f7eb2Smrg This file is part of the GNU Fortran runtime library (libgfortran).
6627f7eb2Smrg 
7627f7eb2Smrg Libgfortran is free software; you can redistribute it and/or
8627f7eb2Smrg modify it under the terms of the GNU General Public
9627f7eb2Smrg License as published by the Free Software Foundation; either
10627f7eb2Smrg version 3 of the License, or (at your option) any later version.
11627f7eb2Smrg 
12627f7eb2Smrg Libgfortran is distributed in the hope that it will be useful,
13627f7eb2Smrg but WITHOUT ANY WARRANTY; without even the implied warranty of
14627f7eb2Smrg MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15627f7eb2Smrg GNU General Public License for more details.
16627f7eb2Smrg 
17627f7eb2Smrg Under Section 7 of GPL version 3, you are granted additional
18627f7eb2Smrg permissions described in the GCC Runtime Library Exception, version
19627f7eb2Smrg 3.1, as published by the Free Software Foundation.
20627f7eb2Smrg 
21627f7eb2Smrg You should have received a copy of the GNU General Public License and
22627f7eb2Smrg a copy of the GCC Runtime Library Exception along with this program;
23627f7eb2Smrg see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
24627f7eb2Smrg <http://www.gnu.org/licenses/>.  */
25627f7eb2Smrg 
26627f7eb2Smrg #include "libgfortran.h"
27627f7eb2Smrg #include <string.h>
28627f7eb2Smrg 
29627f7eb2Smrg #ifdef HAVE_UNISTD_H
30627f7eb2Smrg #include <unistd.h>
31627f7eb2Smrg #endif
32627f7eb2Smrg 
33627f7eb2Smrg 
34627f7eb2Smrg static void
do_pause(void)35627f7eb2Smrg do_pause (void)
36627f7eb2Smrg {
37627f7eb2Smrg   char buff[4];
38627f7eb2Smrg   estr_write ("To resume execution, type go.  "
39627f7eb2Smrg 	      "Other input will terminate the job.\n");
40627f7eb2Smrg 
41627f7eb2Smrg   fgets(buff, 4, stdin);
42627f7eb2Smrg   if (strncmp(buff, "go\n", 3) != 0)
43627f7eb2Smrg     stop_string ('\0', 0, false);
44627f7eb2Smrg   estr_write ("RESUMED\n");
45627f7eb2Smrg }
46627f7eb2Smrg 
47627f7eb2Smrg /* A numeric PAUSE statement.  */
48627f7eb2Smrg 
49627f7eb2Smrg extern void pause_numeric (GFC_INTEGER_8);
50627f7eb2Smrg export_proto(pause_numeric);
51627f7eb2Smrg 
52627f7eb2Smrg void
pause_numeric(GFC_INTEGER_8 code)53627f7eb2Smrg pause_numeric (GFC_INTEGER_8 code)
54627f7eb2Smrg {
55627f7eb2Smrg   st_printf ("PAUSE %ld\n", (long) code);
56627f7eb2Smrg   do_pause ();
57627f7eb2Smrg }
58627f7eb2Smrg 
59627f7eb2Smrg /* A character string or blank PAUSE statement.  */
60627f7eb2Smrg 
61627f7eb2Smrg extern void pause_string (char *string, size_t len);
62627f7eb2Smrg export_proto(pause_string);
63627f7eb2Smrg 
64627f7eb2Smrg void
pause_string(char * string,size_t len)65627f7eb2Smrg pause_string (char *string, size_t len)
66627f7eb2Smrg {
67627f7eb2Smrg   struct iovec iov[3];
68627f7eb2Smrg 
69627f7eb2Smrg   iov[0].iov_base = (char*) "PAUSE ";
70627f7eb2Smrg   iov[0].iov_len = strlen (iov[0].iov_base);
71627f7eb2Smrg   iov[1].iov_base = string;
72627f7eb2Smrg   iov[1].iov_len = len;
73627f7eb2Smrg   iov[2].iov_base = (char*) "\n";
74627f7eb2Smrg   iov[2].iov_len = 1;
75627f7eb2Smrg   estr_writev (iov, 3);
76627f7eb2Smrg 
77627f7eb2Smrg   do_pause ();
78627f7eb2Smrg }
79