aboutsummaryrefslogtreecommitdiff
path: root/src/rc/kill_all.c
AgeCommit message (Collapse)Author
2021-12-21code style: remove space after unary "not" operatorMatt Whitlock
There are no semantic changes in this commit. Suggested-by: Mike Frysinger <vapier@gentoo.org> See: https://github.com/OpenRC/openrc/pull/435#pullrequestreview-727035394
2021-12-20use HEAD in git URIs to point to the default branchMike Frysinger
This makes the URIs shorter and dynamic: whatever the default branch the repo uses will be used.
2021-12-20change getopt definition to elide pointer storageMike Frysinger
Make this a const pointer to the storage directly instead of a pointer variable that points to the storage. Makes the code slightly smaller.
2018-10-13misc: style fixupsAustin English
2018-10-13misc: whitespace fixesAustin English
2018-02-24kill_all: change execl call to execlpWilliam Hubbs
2018-02-14kill_all: create strings with xasprintfWilliam Hubbs
2017-06-08kill_all: include limits.h for PATH_MAXJory A. Pratt
2017-05-19add kill_all helperWilliam Hubbs
This is similar to the sysvinit killall5 utility. It should only be used in service scripts, so it will not be installed in the path. This closes #129.