summaryrefslogtreecommitdiff
path: root/src/init/tar.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/init/tar.c')
-rw-r--r--src/init/tar.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/init/tar.c b/src/init/tar.c
index b041a98..e0843e7 100644
--- a/src/init/tar.c
+++ b/src/init/tar.c
@@ -18,8 +18,8 @@ static const char *root_fakemeta = ""; /* see comment in tar_open */
void tar_driver(void *base) {
static char buf[BUF_SIZE];
struct fs_wait_response res;
- for (;;) {
- switch (_syscall_fs_wait(buf, BUF_SIZE, &res)) {
+ while (!_syscall_fs_wait(buf, BUF_SIZE, &res)) {
+ switch (res.op) {
case VFSOP_OPEN:
_syscall_fs_respond(NULL, tar_open(buf, res.len, base, ~0));
break;
@@ -33,6 +33,7 @@ void tar_driver(void *base) {
break;
}
}
+ _syscall_exit(0);
}
static int tar_open(const char *path, int len, void *base, size_t base_len) {