summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/termios11 (follow)
Commit message (Collapse)AuthorAgeFilesLines
* libtests: Adding file headers and licensesRyan Long2022-04-271-0/+35
| | | | | These files had no file header, copyright, or license. Based on git history, added appropriate copyrights and licenses.
* libtests: Avoid build system defined definesSebastian Huber2019-11-121-0/+2
| | | | Update #3818.
* termios: Add Capability to Generate SIGINTR and SIGQUITJoel Sherrill2019-10-082-0/+37
This patch adds the ability for termios to send SIGINTR on receipt of VINTR and SIGQUIT for VKILL and return -1/EINTR from read() on a termios channel. Importantly, this patch does not alter the default behavior or force POSIX signal code in just because termios is used. The application must explicitly enable the POSIX behavior of generating a signal upon receipt of these characters. This is discussed in the POSIX standard: https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/V1_chap11.html Closes #3800.