Parse command-line options much earlier, so that thread_mlfqs is
[pintos-anon] / src / devices / serial.h
1 #ifndef DEVICES_SERIAL_H
2 #define DEVICES_SERIAL_H
3
4 #include <stdint.h>
5
6 void serial_init_queue (void);
7 void serial_putc (uint8_t);
8 void serial_flush (void);
9 void serial_notify (void);
10
11 #endif /* devices/serial.h */