diff options
Diffstat (limited to 'sys/kern/tty.c')
-rw-r--r-- | sys/kern/tty.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/sys/kern/tty.c b/sys/kern/tty.c index 711fb65..5280279 100644 --- a/sys/kern/tty.c +++ b/sys/kern/tty.c @@ -109,6 +109,11 @@ MALLOC_DEFINE(M_TTYS, "ttys", "tty data structures"); +long tk_cancc; +long tk_nin; +long tk_nout; +long tk_rawcc; + static int proc_compare(struct proc *p1, struct proc *p2); static int ttnread(struct tty *tp); static void ttyecho(int c, struct tty *tp); |