Make tests public. Rewrite most tests. Add tests.
[pintos-anon] / src / devices / intq.h
index 2b3edeafea24f51c8c01ec441145ee1bc56d6347..7d5054feb6f85a526a6dbb2ad5690fcaef2b3033 100644 (file)
@@ -34,7 +34,7 @@ struct intq
     int tail;                   /* Old data is read here. */
   };
 
-void intq_init (struct intq *, const char *);
+void intq_init (struct intq *);
 bool intq_empty (const struct intq *);
 bool intq_full (const struct intq *);
 uint8_t intq_getc (struct intq *);