Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dchannel.c1572 struct timeval tval; in can_write_buf_line() local
1578 tval.tv_sec = 0; in can_write_buf_line()
1579 tval.tv_usec = 0; in can_write_buf_line()
1582 ret = select((int)in_part->ch_fd + 1, NULL, &wfds, NULL, &tval); in can_write_buf_line()
3430 struct timeval tval; in channel_wait() local
3436 tval.tv_sec = timeout / 1000; in channel_wait()
3437 tval.tv_usec = (timeout % 1000) * 1000; in channel_wait()
3449 ret = select(maxfd, &rfds, &wfds, NULL, &tval); in channel_wait()