61.1k views
3 votes
A __________ is a single process. */

typedef struct process
{
struct process *next; /* next process in pipeline */
char **argv; /* for exec */
pid_t pid; /* process ID */
char completed; /* true if process has completed */
char stopped; /* true if process has stopped */
int status; /* reported status value */
} process;

User Stew
by
7.2k points

1 Answer

6 votes

Answer:

{

struct process *next; /* next process in pipeline */}

User Tom J Nowell
by
7.7k points