| 88 | } |
| 89 | |
| 90 | static void |
| 91 | ctty_drvinit(void *unused) |
| 92 | { |
| 93 | |
| 94 | EVENTHANDLER_REGISTER(dev_clone, ctty_clone, 0, 1000); |
| 95 | ctty = make_dev_credf(MAKEDEV_ETERNAL, &ctty_cdevsw, 0, NULL, UID_ROOT, |
| 96 | GID_WHEEL, 0666, "ctty"); |
| 97 | } |
| 98 | |
| 99 | SYSINIT(cttydev,SI_SUB_DRIVERS,SI_ORDER_MIDDLE,ctty_drvinit,NULL); |
nothing calls this directly
no test coverage detected