ref: d3d1b3b47ff80f451c6c9f8b7f1262fef6545f2b
dir: /os/mpc/kbd.c/
#include "u.h" #include "../port/lib.h" #include "mem.h" #include "dat.h" #include "fns.h" #include "io.h" #include "../port/error.h" /* * initialise the keyboard Queue if uartinstall hasn't already done so */ void kbdinit(void) { if(kbdq == nil){ kbdq = qopen(4*1024, 0, 0, 0); qnoblock(kbdq, 1); } archkbdinit(); }