new_termios.c_cc[VMIN] = 1;
new_termios.c_cc[VTIME] = 0;
- if (tcsetattr(fd, TCSADRAIN, &new_termios) >= 0) {
+ if (tcsetattr(fd, TCSANOW, &new_termios) >= 0) {
char c;
if (t != USEC_INFINITY) {
if (fd_wait_for_event(fd, POLLIN, t) <= 0) {
- (void) tcsetattr(fd, TCSADRAIN, &old_termios);
+ (void) tcsetattr(fd, TCSANOW, &old_termios);
return -ETIMEDOUT;
}
}
r = safe_fgetc(f, &c);
- (void) tcsetattr(fd, TCSADRAIN, &old_termios);
+ (void) tcsetattr(fd, TCSANOW, &old_termios);
if (r < 0)
return r;
if (r == 0)
struct termios new_termios = old_termios;
termios_disable_echo(&new_termios);
- if (tcsetattr(STDIN_FILENO, TCSADRAIN, &new_termios) < 0)
+ if (tcsetattr(STDIN_FILENO, TCSANOW, &new_termios) < 0)
return -errno;
r = loop_write(STDOUT_FILENO, ANSI_OSC "11;?" ANSI_ST, SIZE_MAX);
}
finish:
- RET_GATHER(r, RET_NERRNO(tcsetattr(STDIN_FILENO, TCSADRAIN, &old_termios)));
+ RET_GATHER(r, RET_NERRNO(tcsetattr(STDIN_FILENO, TCSANOW, &old_termios)));
return r;
}
struct termios new_termios = old_termios;
termios_disable_echo(&new_termios);
- if (tcsetattr(input_fd, TCSADRAIN, &new_termios) < 0)
+ if (tcsetattr(input_fd, TCSANOW, &new_termios) < 0)
return log_debug_errno(errno, "Failed to set new terminal settings: %m");
unsigned saved_row = 0, saved_column = 0;
if (saved_row > 0 && saved_column > 0)
RET_GATHER(r, terminal_set_cursor_position(output_fd, saved_row, saved_column));
- RET_GATHER(r, RET_NERRNO(tcsetattr(input_fd, TCSADRAIN, &old_termios)));
+ RET_GATHER(r, RET_NERRNO(tcsetattr(input_fd, TCSANOW, &old_termios)));
return r;
}
new_termios = old_termios;
termios_disable_echo(&new_termios);
- r = RET_NERRNO(tcsetattr(ttyfd, TCSADRAIN, &new_termios));
+ r = RET_NERRNO(tcsetattr(ttyfd, TCSANOW, &new_termios));
if (r < 0)
goto finish;
finish:
if (ttyfd >= 0 && reset_tty) {
(void) loop_write(ttyfd, "\n", 1);
- (void) tcsetattr(ttyfd, TCSADRAIN, &old_termios);
+ (void) tcsetattr(ttyfd, TCSANOW, &old_termios);
}
return r;