Home
last modified time | relevance | path

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

/vim-8.2.3635/src/proto/
H A Dos_vms.pro15 int RealWaitForChar(int fd, long msec, int *check_for_gpm, int *interrupted);
/vim-8.2.3635/src/
H A Dos_unix.c149 int RealWaitForChar(int, long, int *, int *interrupted);
151 static int RealWaitForChar(int, long, int *, int *interrupted);
355 RealWaitForChar(read_cmd_fd, p_wd, NULL, NULL); in mch_write()
5165 while (RealWaitForChar(fromshell_fd, 10L, NULL, NULL)) in mch_call_shell_fork()
6026 && RealWaitForChar(read_cmd_fd, 0L, NULL, NULL)) in mch_breakcheck()
6115 avail = RealWaitForChar(read_cmd_fd, msec, in WaitForCharOrMouse()
6119 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted); in WaitForCharOrMouse()
6142 avail = RealWaitForChar(read_cmd_fd, msec, NULL, interrupted); in WaitForCharOrMouse()
6159 RealWaitForChar(int fd, long msec, int *check_for_gpm UNUSED, int *interrupted) in RealWaitForChar() function
H A Dos_vms.c736 RealWaitForChar( in RealWaitForChar() function
/vim-8.2.3635/runtime/doc/
H A Dos_vms.txt794 - correct RealWaitForChar
H A Dversion5.txt5138 - call to RealWaitForChar() had one argument too many. (Campbell)
H A Dversion8.txt11634 Problem: Wrong computation of remaining wait time in RealWaitForChar()
25213 Solution: Do not wait indefinitely in RealWaitForChar(). (Neil Rieck)
29034 Problem: Running out of signal stack in RealWaitForChar. (Vladimir Marek)
H A Dversion6.txt10064 Solution: Avoid that RealWaitForChar() is used recursively.