aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/process.cpp (unfollow)
Commit message (Collapse)Author
2021-05-16clang-tidy fixesEgor Tensin
2021-05-16remove VS 2013 cruftEgor Tensin
2021-05-16Process: import pdb::Process from winapi-debugEgor Tensin
2021-05-04move away from variable-size intsEgor Tensin
2021-05-04fix compiler warningsEgor Tensin
2020-10-27code styleEgor Tensin
Don't use brace initialization in constructors, VS 2013 doesn't like that.
2020-10-27VS 2013 workaroundsEgor Tensin
2020-10-27rework Process API & testsEgor Tensin
* Add separate classes ProcessParameters & ShellParameters for Process::create() and Process::shell() methods. * Add a separate "worker" executable. It's used in tests via a fairly complicated scheme, receiving orders to execute via a shared memory region. * Add tests that utilize the Console API, reading console window's screen buffer directly, making for more reliable tests & broader coverage.
2020-10-25Process: add termination methodsEgor Tensin
2020-10-19Process: add runas()Egor Tensin
2020-10-18stream.hpp -> process_io.hpp, move IO thereEgor Tensin
2020-10-18"return std::move" is evilEgor Tensin
2020-10-18Process: add get_exe_path()Egor Tensin
2020-10-18Process: add methods to load resource stringsEgor Tensin
2020-10-16CommandLine: saner APIEgor Tensin
2020-10-16Process: add get_exit_code()Egor Tensin
2020-10-16Process: support pipe redirectionEgor Tensin
2020-10-15WIP: add simple Process classEgor Tensin