From 406889ed5c780f0e28703b143c72bbf035280b25 Mon Sep 17 00:00:00 2001 From: "Douglas B. Rumbaugh" Date: Sat, 1 Nov 2025 13:35:36 -0400 Subject: Got pipelining fully working --- include/command.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/command.h') diff --git a/include/command.h b/include/command.h index 3df724b..f44c103 100644 --- a/include/command.h +++ b/include/command.h @@ -15,10 +15,10 @@ typedef struct command { char *infile; char *outfile; struct command *next; + struct command *prev; pid_t pid; int pipe[2]; - int *read_pipe; char *args[MAX_ARGUMENT_CNT + 2]; } command; -- cgit v1.2.3