summaryrefslogtreecommitdiff
path: root/kernel/fifo.h
diff options
context:
space:
mode:
authorMichal Idziorek <m.i@gmx.at>2015-05-18 09:20:01 +0200
committerMichal Idziorek <m.i@gmx.at>2015-05-18 09:20:01 +0200
commita6184be79e3918764d5e683796afbd8e8ccba018 (patch)
tree870a5506efad410c89524bbeb740fb44974bf1da /kernel/fifo.h
parentfe79552d9fcfd60d8c2bb828c6b93cf471ef7b75 (diff)
fifo through ringbuffer(stdin) and vt52(stdout) finally working!
Diffstat (limited to 'kernel/fifo.h')
-rw-r--r--kernel/fifo.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/kernel/fifo.h b/kernel/fifo.h
index bae7d57..e0a81e5 100644
--- a/kernel/fifo.h
+++ b/kernel/fifo.h
@@ -17,9 +17,9 @@ typedef struct fifo_struct
}fifo;
-bool fifo_put(fifo*,uint8_t);
-uint8_t fifo_get(fifo*);
-bool fifo_has(fifo*);
+volatile bool fifo_put(fifo*,uint8_t);
+volatile uint8_t fifo_get(fifo*);
+volatile bool fifo_has(fifo*);
#endif