summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/fhandler_tty.cc
Commit message (Expand)AuthorAgeFilesLines
* Cygwin: pty: Rename input/output named pipes.Takashi Yano via Cygwin-patches2021-03-231-6/+6
* Cygwin: pty: Transfer input only if the stdin is a pty.Takashi Yano via Cygwin-patches2021-03-091-2/+8
* Cygwin: pty: Transfer input for native app only if the stdin is pcon.Takashi Yano via Cygwin-patches2021-03-081-8/+10
* Cygwin: pty: Attach to stub process when non-cygwin app inherits pcon.Takashi Yano via Cygwin-patches2021-03-081-1/+1
* Cygwin: console, pty: Stop ignoring Ctrl-C by IGNBRK.Takashi Yano via Cygwin-patches2021-03-081-3/+3
* Cygwin: pty: Discard input already accepted on interrupt.Takashi Yano via Cygwin-patches2021-03-081-0/+23
* Cygwin: pty: Fix a race issue in startup of pseudo console.Takashi Yano via Cygwin-patches2021-03-051-4/+12
* Cygwin: pty: Fix segfault caused when tcflush() is called.Takashi Yano via Cygwin-patches2021-02-221-2/+5
* Cygwin: pty: Make FLUSHO and Ctrl-O work.Takashi Yano via Cygwin-patches2021-02-191-6/+11
* Cygwin: pty: Reflect tty settings to pseudo console mode.Takashi Yano via Cygwin-patches2021-02-191-0/+27
* Cygwin: pty: Fix a bug in input transfer for GDB.Takashi Yano via Cygwin-patches2021-02-151-2/+3
* Cygwin: pty: Reduce unecessary input transfer.Takashi Yano via Cygwin-patches2021-02-121-154/+223
* Cygwin: pty: Make slave read() thread-safe.Takashi Yano via Cygwin-patches2021-02-011-0/+6
* Cygwin: pty: Allow multiple apps to enable pseudo console simultaneously.Takashi Yano via Cygwin-patches2021-01-281-73/+271
* Cygwin: pty: Make apps using console APIs be able to debug with gdb.Takashi Yano via Cygwin-patches2021-01-281-34/+265
* Cygwin: pty: Keep code page between non-cygwin apps.Takashi Yano via Cygwin-patches2021-01-281-0/+7
* Cygwin: pty: Inherit typeahead data between two input pipes.Takashi Yano via Cygwin-patches2021-01-281-112/+433
* Cygwin: pty: Reduce buffer size in get_console_process_id().Takashi Yano via Cygwin-patches2021-01-201-2/+2
* Cygwin: pty: Lessen the side effect of workaround for rlwarp.Takashi Yano via Cygwin-patches2021-01-191-4/+12
* Cygwin: pty: Set input_available_event only for cygwin pipe.Takashi Yano via Cygwin-patches2021-01-181-1/+2
* Cygwin: pty: Make master thread functions be static.Takashi Yano via Cygwin-patches2021-01-181-52/+102
* Cygwin: pty: Prevent pty from changing code page of parent console.Takashi Yano via Cygwin-patches2021-01-181-3/+115
* Cygwin: pty: Make close_pseudoconsole() be a static member function.Takashi Yano via Cygwin-patches2021-01-181-10/+12
* Cygwin: pty: Add workaround for rlwrap 0.40 or later.Takashi Yano via Cygwin-patches2021-01-181-0/+5
* Cygwin: pty: Revise the workaround for rlwrap.Takashi Yano via Cygwin-patches2020-12-161-2/+2
* Cygwin: pty: Check response for CSI6n more strictly.Takashi Yano via Cygwin-patches2020-12-161-2/+6
* Cygwin: pty: Add a workaround for rlwrap.Takashi Yano via Cygwin-patches2020-12-141-0/+5
* Cygwin: pty: Revise the code for timeout in term_has_pcon_cap().Takashi Yano via Cygwin-patches2020-12-141-3/+3
* Cygwin: pty: Skip term_has_pcon_cap() if pseudo console is disabled.Takashi Yano via Cygwin-patches2020-12-141-2/+0
* Cygwin: pty: Fix minor style issue.Takashi Yano via Cygwin-patches2020-11-231-1/+1
* Cygwin: pty: Discard "OSC Ps; ? BEL/ST" in pseudo console output.Takashi Yano via Cygwin-patches2020-11-231-0/+30
* Cygwin: pty: Fix a bug in the code removing "CSI > Pm m".Takashi Yano via Cygwin-patches2020-11-231-0/+1
* Cygwin: pty: Disable ResizePseudoConsole() if stdout is redirected.Takashi Yano via Cygwin-patches2020-10-271-2/+6
* Cygwin: pty: Fix race condition in initialization of pseudo console.Takashi Yano via Cygwin-patches2020-10-261-9/+0
* Cygwin: pty: Drop handling for UTF-7 in convert_mb_str().Takashi Yano2020-09-111-48/+38
* Cygwin: pty: Prevent garbled output for existing non-cygwin apps.Takashi Yano via Cygwin-patches2020-09-111-1/+5
* Cygwin: pty: setup new pty on opening the master, not in constructorCorinna Vinschen2020-09-091-5/+2
* Cygwin: pty: Fix input charset for non-cygwin apps with disable_pcon.Takashi Yano via Cygwin-patches2020-09-091-1/+15
* Cygwin: pty: Revise convert_mb_str() function.Takashi Yano via Cygwin-patches2020-09-091-47/+88
* Cygwin: pty: move codepage evaluation to nlsfuncs.ccCorinna Vinschen2020-09-081-182/+9
* Cygwin: pty: Fix a bug in the code removing set window title sequence.Takashi Yano via Cygwin-patches2020-08-311-8/+5
* Cygwin: pty: Disable pseudo console if TERM does not have CSI6n.Takashi Yano via Cygwin-patches2020-08-311-23/+211
* Cygwin: pty: Implement new pseudo console support.Takashi Yano2020-08-221-1477/+273
* Cygwin: pty: Change the timing of set_locale() call again.Takashi Yano via Cygwin-patches2020-08-171-4/+6
* Cygwin: pty: Change the timing of setup_locale() call.Takashi Yano via Cygwin-patches2020-08-131-4/+4
* Cygwin: Add 'fallthrough' pseudo keyword for switch/case useCorinna Vinschen2020-08-051-2/+2
* Cygwin: pty: Fix a bug on redirecting something to /dev/pty*.Takashi Yano via Cygwin-patches2020-07-201-5/+0
* Cygwin: pty, termios: Unify thoughts of read ahead beffer handling.Takashi Yano via Cygwin-patches2020-07-011-21/+16
* Cygwin: pty: Discard CSI > Pm m sequence from native windows apps.Takashi Yano via Cygwin-patches2020-07-011-0/+28
* Cygwin: pty: Fix screen distortion after less for native apps again.Takashi Yano via Cygwin-patches2020-06-051-34/+15