aboutsummaryrefslogtreecommitdiff
path: root/kernel/adc.c
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2012-02-23 12:46:51 +0000
committerDimitri Sokolyuk <demon@dim13.org>2012-02-23 12:46:51 +0000
commit2acb123fbf5dadf743db122e26fb96da4a58a84c (patch)
tree278061ad5cbaedfcf722651c45fddf585e49ed90 /kernel/adc.c
parent51649e040ba68812ae3666c1f1418642b734ae55 (diff)
remove priorities
simplify semaphores diff-time based time queue
Diffstat (limited to 'kernel/adc.c')
-rw-r--r--kernel/adc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/adc.c b/kernel/adc.c
index aa23ffb..f91b5a8 100644
--- a/kernel/adc.c
+++ b/kernel/adc.c
@@ -44,7 +44,7 @@ adc(void *arg)
}
wait(0);
fprintf(stderr, "\n%8lx%8x", now(), a->value[0]);
- signal(0);
+ signal();
sleep(MSEC(100));
}
}