summaryrefslogtreecommitdiffstats
path: root/osdep/subprocess.h
Commit message (Collapse)AuthorAgeFilesLines
* subprocess, lua: export whether the process was killed by uswm42015-06-271-0/+2
| | | | | | | | We want to distinguish actual errors, and just aborting the program intentionally. Also be a bit more careful with handling the wait() exit status: do not called WEXITSTATUS() without checking WIFEXITED() first.
* subprocess: move implementation for deatched subprocesseswm42015-04-151-0/+3
|
* subprocess: minor cosmetic cleanupwm42014-11-221-1/+3
| | | | | Don't recursively include the whole stream.h header; only include what's minimally needed, and handle the rest with forward declarations.
* lua: subprocess: move to osdep/subprocess-{win,posix}.cJames Ross-Gowan2014-11-221-0/+30
The subprocess code was already split into fairly general functions, separate from the Lua code. It's getting pretty big though, especially the Windows-specific parts, so move it into its own files.