Linux: start another process when a given one exits; send sigstop to certain processes as they execute; ...
fnordomat b743bb6f00 fixed some mistakes | 5 yıl önce | |
---|---|---|
src | 5 yıl önce | |
.gitignore | 5 yıl önce | |
LICENSE | 5 yıl önce | |
Makefile.am | 5 yıl önce | |
README.md | 5 yıl önce | |
configure.ac | 5 yıl önce |
This is work in progress.
Start one process when another (specified by PID) quits, or perform an action when a process whose commandline begins with a given prefix starts. The action can be: trigger another command or send the new process a SIGSTOP as soon as it is detected.
Linux with CONFIG_CONNECTOR=y CONFIG_PROC_EVENTS=y configured.
touch config.rpath
autoreconf -iv
./configure --prefix=/usr/local
make
upon exec m"xyz" "run abc"
upon exit p4711 "run abc"
upon -vv exec m"/usr/lib/firefox/firefox" sigstop
[SO Q 6075013](https://stackoverflow.com/questions/6075013/how-to-detect-the-launching-of-programs-on-linux_
Thanks to the various people who shared their "cn_proc" C code under FLOSS licenses.
Make sure it is as safe as it can be. Identify and implement missing features (regex matching; command line arguments for the "run" action). More testing. Improve the code. Optimize.