Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dpty.c134 #ifndef O_NOCTTY
135 # define O_NOCTTY 0 macro
198 if ((f = posix_openpt(O_RDWR | O_NOCTTY | O_EXTRA)) == -1) in mch_openpty()
294 if ((f = open("/dev/ptc", O_RDWR | O_NOCTTY | O_NONBLOCK | O_EXTRA, 0)) < 0) in mch_openpty()
323 if ((f = open("/dev/ptmx", O_RDWR | O_NOCTTY | O_EXTRA, 0)) == -1) in mch_openpty()
360 if ((f = open("/dev/ptc", O_RDWR | O_NOCTTY | O_EXTRA)) < 0) in mch_openpty()
372 if ((aixhack = open(TtyName, O_RDWR | O_NOCTTY | O_EXTRA, 0)) < 0) in mch_openpty()
417 if ((f = open(PtyName, O_RDWR | O_NOCTTY | O_EXTRA, 0)) == -1) in mch_openpty()
H A Dos_unix.c3506 tty_fd = open(name, O_RDONLY | O_NOCTTY | O_EXTRA, 0); in get_tty_fd()
4356 #ifdef O_NOCTTY in open_pty()
4357 *pty_slave_fd = open(tty_name, O_RDWR | O_NOCTTY | O_EXTRA, 0); in open_pty()
/vim-8.2.3635/runtime/doc/
H A Dversion7.txt11937 Solution: Use O_NOCTTY both in the master and slave. (Bjorn Winckler)