delete mention of ^Y; currently don't allow ^Y or ^E.
[unix-history] / usr / src / usr.bin / pascal / pdx / process.h
index 5814e7e..cf8392f 100644 (file)
@@ -1,6 +1,10 @@
-/* Copyright (c) 1982 Regents of the University of California */
-
-/* static char sccsid[] = "@(#)process.h 1.4 %G%"; */
+/*
+ * Copyright (c) 1980 Regents of the University of California.
+ * All rights reserved.  The Berkeley software License Agreement
+ * specifies the terms and conditions for redistribution.
+ *
+ *     @(#)process.h   5.2 (Berkeley) %G%
+ */
 
 /*
  * Definitions for process module.
 
 /*
  * Definitions for process module.
@@ -13,20 +17,21 @@ typedef struct process PROCESS;
 
 PROCESS *process;
 
 
 PROCESS *process;
 
-initstart();   /* initial process start up */
-run();                 /* start program running */
-arginit();             /* initialize program arguments */
-setargs();             /* special argument handling */
-newarg();              /* add a new argument to list for program */
-inarg();               /* set standard input for program */
-outarg();              /* set standard output for program */
-cont();                        /* continue execution where last left off */
-step();                        /* single step */
-stepc();               /* single step command */
-stepto();              /* execute up to a given address */
-next();                        /* single step, skip over calls */
-endprogram();          /* note the termination of the program */
-printstatus();         /* print current error */
+int initstart();       /* initial process start up */
+int run();             /* start program running */
+int arginit();         /* initialize program arguments */
+int setargs();         /* special argument handling */
+int newarg();          /* add a new argument to list for program */
+int inarg();           /* set standard input for program */
+int outarg();          /* set standard output for program */
+int cont();            /* continue execution where last left off */
+int step();            /* single step */
+int stepc();           /* single step command */
+int stepto();          /* execute up to a given address */
+int next();            /* single step, skip over calls */
+int endprogram();      /* note the termination of the program */
+int printstatus();     /* print current error */
+int printwhere();      /* print current source line and file */
 BOOLEAN isfinished();  /* TRUE if process has terminated */
 BOOLEAN isfinished();  /* TRUE if process has terminated */
-iread(), dread();      /* read from the process' address space */
-iwrite(), dwrite();    /* write to the process' address space */
+int iread(), dread();  /* read from the process' address space */
+int iwrite(), dwrite();        /* write to the process' address space */