nullcons_subr.c | 44 static struct tty *nulltty; /* null console tty */ variable in typeref:struct:tty * 87 error = (*nulltty->t_linesw->l_ioctl)(nulltty, cmd, data, flag, l); 91 error = ttioctl(nulltty, cmd, data, flag, l); 102 return nulltty; 173 nulltty = tty_alloc(); 174 nulltty->t_dev = makedev(cmajor, 0); 175 tty_attach(nulltty); 176 cn->cn_dev = nulltty->t_dev;
|