├── .gitignore ├── Makefile ├── README.md ├── UNLICENSE ├── nochildren.c ├── nosudo.c ├── ptracer.c ├── subreaper.c └── waiter.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izabera/pm-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izabera/pm-tools/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izabera/pm-tools/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izabera/pm-tools/HEAD/UNLICENSE -------------------------------------------------------------------------------- /nochildren.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izabera/pm-tools/HEAD/nochildren.c -------------------------------------------------------------------------------- /nosudo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izabera/pm-tools/HEAD/nosudo.c -------------------------------------------------------------------------------- /ptracer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izabera/pm-tools/HEAD/ptracer.c -------------------------------------------------------------------------------- /subreaper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izabera/pm-tools/HEAD/subreaper.c -------------------------------------------------------------------------------- /waiter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/izabera/pm-tools/HEAD/waiter.c --------------------------------------------------------------------------------