Age | Commit message (Collapse) | Author |
|
|
|
|
|
|
|
|
|
Call close() on all process handles after we have called kill(pid,
SIGTERM).
See: https://bugs.torproject.org/28179
|
|
This patch adds support for process termination to the Process
subsystem.
See: https://bugs.torproject.org/28179
|
|
This patch adds support for getting the unique process identifier from a
given process_t. This patch implements both support for both the Unix
and Microsoft Windows backend.
See: https://bugs.torproject.org/28179
|
|
This patch adds the Unix backend for the Process subsystem. The Unix
backend attaches file descriptors from the child process's standard in,
out and error to Tor's libevent based main loop using traditional Unix
pipes. We use the already available `waitpid` module to get events
whenever the child process terminates.
See: https://bugs.torproject.org/28179
|