aboutsummaryrefslogtreecommitdiff
path: root/lib/std/child_process.zig
AgeCommit message (Expand)Author
2023-02-18update std lib and compiler sources to new for loop syntaxAndrew Kelley
2023-02-15split `@qualCast` into `@constCast` and `@volatileCast`Veikka Tuominen
2023-01-30implement `@qualCast`Veikka Tuominen
2022-12-31ChildProcess: fix false positives in windowsCreateProcessSupportsExtensionRyan Liptak
2022-12-19spawnWindows: Fix PATH searching when cwd is absoluteRyan Liptak
2022-12-18spawnWindows: Improve worst-case performance considerablyRyan Liptak
2022-12-17spawnWindows: Don't search PATH if app path is absoluteRyan Liptak
2022-12-17spawnWindows: If an exe is found but fails to exec, retry with PATHEXT values...Ryan Liptak
2022-12-17Add error.InvalidExe to CreateProcessW error set and handle it in ChildProces...Ryan Liptak
2022-12-16ChildProcess.spawnWindows: Drastically reduce the amount of allocation during...Ryan Liptak
2022-12-16ChildProcess.spawnWindows: Fix PATH search when the ext is in the commandRyan Liptak
2022-12-10child_process: add ability to start child suspended on macOSJakub Konka
2022-11-29std.mem.Allocator: allow shrink to failAndrew Kelley
2022-10-03std.ChildProcess: correct fn getUserInfo pkg in setUserNamealex
2022-09-11Compilation: handle system C compiler not foundAndrew Kelley
2022-05-27math: make `cast` return optional instead of an errorAli Chraghi
2022-05-26std.testing: remove tight coupling with executing zig as child processAndrew Kelley
2022-05-11remove extra storage from EnvMap on windowsJonathan Marler
2022-05-11Update usages of `process.getEnvMap` and change BufMap -> EnvMap where applic...Jonathan Marler
2022-04-29std: Do not allocate the result for ChildProcess.initJimmi Holst Christensen
2022-04-28Revert "std.testing: add writeZigFile for TmpDir"Andrew Kelley
2022-04-28std.testing: add writeZigFile for TmpDirmatu3ba
2022-04-21ran zig fmt on changesRabin Gaire
2022-04-21update test message and using unreachable keyword for unintended test code pathRabin Gaire
2022-04-20add test case for child_process spawn logicRabin Gaire
2022-04-20fix child process spawn on macos hangs issueRabin Gaire
2022-03-27std.testing: add methods tmpDirPath, getTestArgs, buildExematu3ba
2022-03-16std: introduce posix_spawn as an alt to fork-execJakub Konka
2022-03-12std: add test for child_processmatu3ba
2022-03-03stdlib: Add emulated CWD to std.os for WASI targetsCody Tapscott
2022-02-07Merge pull request #10813 from marler8997/windowsChildHangAndrew Kelley
2022-02-07fix bug when ReadFile returns synchronously in collectOutputWindowsJonathan Marler
2022-02-06Avoid depending on child process execution when not supported by host OSCody Tapscott
2022-02-06rework to allow ReadFile to complete synchronouslyJonathan Marler
2022-02-06fix bug I think I found while manually reviewingJonathan Marler
2022-02-06child_process: collectOutputWindows handle broken_pipe from ReadFileJonathan Marler
2021-12-19stage1, stage2: rename c_void to anyopaque (#10316)Isaac Freund
2021-11-30allocgate: renamed getAllocator function to allocatorLee Cannon
2021-11-30allocgate: std Allocator interface refactorLee Cannon
2021-11-30std lib API deprecations for the upcoming 0.9.0 releaseAndrew Kelley
2021-10-17actually fix child process deadlock on windowsJonathan Marler
2021-10-04migrate from `std.Target.current` to `@import("builtin").target`Andrew Kelley
2021-09-19Improve ensureTotalCapacity call in ChildProcess.collectOutputWindowsRyan Liptak
2021-09-19Update all ensureCapacity calls to the relevant non-deprecated versionRyan Liptak
2021-09-06stdlib: fix ChildProcess.killPosixTakeshi Yoneda
2021-09-01std.os: more reorganization effortsAndrew Kelley
2021-08-24remove redundant license headers from zig standard libraryAndrew Kelley
2021-08-06Update all usages of mem.split/mem.tokenize for generic versionRyan Liptak
2021-06-18finish ChildProcess collectOutputWindowsJonathan Marler
2021-06-17std: Uniform polling logic for Windows and UnixLemonBoy