aboutsummaryrefslogtreecommitdiff
path: root/kernel/cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/cmd.c')
-rw-r--r--kernel/cmd.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/kernel/cmd.c b/kernel/cmd.c
index 0174817..89d7a5f 100644
--- a/kernel/cmd.c
+++ b/kernel/cmd.c
@@ -34,8 +34,6 @@ void
cmd(void *arg)
{
struct rgbarg *a = arg;
- uint32_t d = deadline();
- uint32_t r = release();
char c;
int val;
char buf[10], *s;
@@ -63,7 +61,6 @@ cmd(void *arg)
}
}
- d = r += MSEC(10);
- update(r, d);
+ snore(MSEC(10));
}
}