15455Slinton /* Copyright (c) 1982 Regents of the University of California */ 25455Slinton 3*5589Slinton /* static char sccsid[] = "@(#)process.h 1.3 01/20/82"; */ 45455Slinton 55455Slinton /* 65455Slinton * Definitions for process module. 75455Slinton * 85455Slinton * This module contains the routines to manage the execution and 95455Slinton * tracing of the debuggee process. 105455Slinton */ 115455Slinton 125455Slinton typedef struct process PROCESS; 135455Slinton 145455Slinton PROCESS *process; 155455Slinton 165455Slinton start(); /* start up process */ 175455Slinton run(); /* start program running */ 18*5589Slinton arginit(); /* initialize program arguments */ 19*5589Slinton setargs(); /* special argument handling */ 205455Slinton newarg(); /* add a new argument to list for program */ 215455Slinton inarg(); /* set standard input for program */ 225455Slinton outarg(); /* set standard output for program */ 235455Slinton cont(); /* continue execution where last left off */ 245455Slinton step(); /* single step */ 255455Slinton stepc(); /* single step command */ 265455Slinton stepto(); /* execute up to a given address */ 275455Slinton next(); /* single step, skip over calls */ 285455Slinton endprogram(); /* note the termination of the program */ 295455Slinton printstatus(); /* print current error */ 305455Slinton BOOLEAN isfinished(); /* TRUE if process has terminated */ 315455Slinton iread(), dread(); /* read from the process' address space */ 325455Slinton iwrite(), dwrite(); /* write to the process' address space */ 33