aboutsummaryrefslogtreecommitdiff
path: root/winsup/cygwin/spawn.cc
AgeCommit message (Expand)AuthorFilesLines
2024-12-12Cygwin: sched_setscheduler: accept SCHED_RESET_ON_FORK flagChristian Franke1-0/+1
2024-12-04Cygwin: sched_setscheduler: accept SCHED_OTHER, SCHED_FIFO and SCHED_RRChristian Franke1-0/+1
2024-11-01Cygwin: pipe: Switch pipe mode to blocking mode by defaultTakashi Yano1-4/+0
2024-10-31Cygwin: console: Inherit pcon hand over from parent ptyTakashi Yano1-0/+1
2024-03-12Cygwin: pipe: Make sure to set read pipe non-blocking for cygwin apps.Takashi Yano1-32/+2
2024-02-03Cygwin: Do not show Error dialogs by defaultJohannes Schindelin1-1/+1
2024-01-31Cygwin: files: slightly simplify suffix handlingCorinna Vinschen1-9/+1
2023-08-29Cygwin: execve: drop argument size limitCorinna Vinschen1-10/+8
2023-08-29Cygwin: Fix segfalt when too many command line args are specified.Takashi Yano1-1/+8
2023-07-18Cygwin: Restore signal handlers on thread cancellation during system()Jon Turney1-4/+15
2023-04-19Cygwin: posix_spawnp: don't fallback to shCorinna Vinschen1-2/+1
2023-03-07Cygwin: ctty: Replace ctty constant with more descriptive macros.Takashi Yano1-1/+1
2022-11-20Cygwin: pty, console: Encapsulate spawn.cc code related to pty/console.Takashi Yano1-104/+10
2022-10-28Cygwin: stop handling files with .com suffix like .exe filesCorinna Vinschen1-3/+0
2022-10-28Revert "Cygwin: pty: Fix 'Bad address' error when running 'cmd.exe /c dir'"Corinna Vinschen1-2/+0
2022-10-28Cygwin: spawn: drop special handling for cmd.exe and command.comCorinna Vinschen1-69/+43
2022-10-22Cygwin: pty: Fix 'Bad address' error when running 'cmd.exe /c dir'Takashi Yano1-0/+2
2022-08-22Cygwin: spawn: don't overallocate SECURITY_ATTRIBUTES bufferCorinna Vinschen1-1/+1
2022-08-05Cygwin: pty: Fix a small bug in is_console_app().Takashi Yano1-1/+1
2022-07-31Cygwin: pty: Treat *.bat and *.cmd as a non-cygwin console app.Takashi Yano1-1/+6
2022-07-28Cygwin: rename __cygwin_environ and drop env redirection via cur_environ()Corinna Vinschen1-4/+4
2022-07-05Cygwin: spawn: Treat empty path as the current directory.Takashi Yano1-2/+19
2022-05-29Cygwin: remove regparm.hKen Brown1-1/+1
2022-05-19Cygwin: make sure exec'ed process exists early in process listCorinna Vinschen1-7/+8
2022-05-13Cygwin: drop create_token and dependent functionsCorinna Vinschen1-5/+3
2022-04-18Cygwin: pty: Fix deadlock caused by Ctrl-C in setup_pseudoconsole().Takashi Yano1-0/+4
2022-04-02Cygwin: pipe: Avoid deadlock for non-cygwin writer.Takashi Yano1-1/+17
2022-03-10Cygwin: console, pty: Fix segfault in child_info_spawn::worker().Takashi Yano1-1/+1
2022-02-28Cygwin: pinfo: Fix exit code for non-cygwin apps which reads console.Takashi Yano1-1/+14
2022-02-22Cygwin: pty, console: Fix handle leak which occurs on exec() error.Takashi Yano1-118/+64
2022-02-20Cygwin: console: Rearrange set_(in|out)put_mode() calls.Takashi Yano1-36/+4
2022-02-13Cygwin: console: Set console mode even if stdin/stdout is redirected.Takashi Yano1-12/+7
2022-01-14Cygwin: pty, console: Fix deadlock in GDB regarding mutex.Takashi Yano1-3/+5
2021-12-13Cygwin: pty: Fix Ctrl-C handling further for non-cygwin apps.Takashi Yano1-0/+3
2021-12-12Cygwin: console: Fix console mode of non-cygwin apps in background.Takashi Yano1-2/+5
2021-11-18Cygwin: pipe: Suppress unnecessary set_pipe_non_blocking() call.Takashi Yano1-3/+6
2021-09-14Cygwin: pipe: Use read pipe handle for select() on write pipe.Takashi Yano1-0/+11
2021-04-06Cygwin: fhandler: Rename handles from XXX_cyg/XXX to XXX/XXX_nat.Takashi Yano1-12/+12
2021-03-23Cygwin: Allow executing Windows Store's "app execution aliases"Johannes Schindelin1-0/+7
2021-03-09Cygwin: pty: Transfer input only if the stdin is a pty.Takashi Yano via Cygwin-patches1-2/+7
2021-03-05Cygwin: console: Fix restoring console mode failure.Takashi Yano via Cygwin-patches1-4/+10
2021-02-19Cygwin: console: Fix handling of Ctrl-S in Win7.Takashi Yano via Cygwin-patches1-14/+18
2021-02-12Cygwin: pty: Reduce unecessary input transfer.Takashi Yano via Cygwin-patches1-33/+45
2021-01-28Cygwin: pty: Allow multiple apps to enable pseudo console simultaneously.Takashi Yano via Cygwin-patches1-14/+30
2021-01-28Cygwin: pty: Make apps using console APIs be able to debug with gdb.Takashi Yano via Cygwin-patches1-0/+2
2021-01-28Cygwin: pty: Inherit typeahead data between two input pipes.Takashi Yano via Cygwin-patches1-30/+52
2021-01-19Cygwin: spawn.cc: Fix typo in comment by commit 974e6d76.Takashi Yano via Cygwin-patches1-1/+1
2021-01-18Cygwin: pty: Prevent pty from changing code page of parent console.Takashi Yano via Cygwin-patches1-0/+1
2021-01-18Cygwin: pty: Make close_pseudoconsole() be a static member function.Takashi Yano via Cygwin-patches1-2/+4
2021-01-18Cygwin: console: Revise the code to switch xterm mode.Takashi Yano via Cygwin-patches1-2/+33