Home
last modified time | relevance | path

Searched refs:vt_fd (Results 1 – 1 of 1) sorted by relevance

/external/toybox/toys/pending/
Dopenvt.c78 int fd, vt_fd, ret = 0; in openvt_main() local
103 vt_fd = xopen_stdio(toybuf, O_RDWR); in openvt_main()
105 ioctl(vt_fd, VT_ACTIVATE, TT.vt_num); in openvt_main()
106 ioctl(vt_fd, VT_WAITACTIVE, TT.vt_num); in openvt_main()
111 dup2(vt_fd, 1); in openvt_main()
112 dup2(vt_fd, 2); in openvt_main()
113 while (vt_fd > 2) in openvt_main()
114 close(vt_fd--); in openvt_main()
119 ioctl(vt_fd, TIOCSCTTY, 0); in openvt_main()