aboutsummaryrefslogtreecommitdiff
path: root/sys/cmd/rc/rc.h
diff options
context:
space:
mode:
authorNicholas Noll <nbnoll@eml.cc>2021-10-19 14:16:54 -0700
committerNicholas Noll <nbnoll@eml.cc>2021-10-19 14:16:54 -0700
commit6d50d5b97d49a74a8faf587ec2bbf234626adf0c (patch)
treeff09e03ad96fc873b10027120f38a2ae382ae916 /sys/cmd/rc/rc.h
parent2b53bca326decd50012883f0cff3b5316a3e100d (diff)
Feat(rc): added subshell commands and cd builtin
Slowly chipping away at a decent feature list. Subshell commands are executed by @{ ... }.
Diffstat (limited to 'sys/cmd/rc/rc.h')
-rw-r--r--sys/cmd/rc/rc.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/cmd/rc/rc.h b/sys/cmd/rc/rc.h
index 55a4eb2..606ca7b 100644
--- a/sys/cmd/rc/rc.h
+++ b/sys/cmd/rc/rc.h
@@ -207,8 +207,11 @@ void execute(Word *, Word*);
/* wait.c */
void addwait(Thread *, int);
+void delwait(Thread *, int);
void clearwait(Thread*);
+
int waitall(Thread *);
+int waitfor(Thread *, int);
void killzombies(void);