-/* $OpenBSD: pkill.c,v 1.36 2015/01/16 06:40:10 deraadt Exp $ */
+/* $OpenBSD: pkill.c,v 1.37 2015/10/10 14:25:42 deraadt Exp $ */
/* $NetBSD: pkill.c,v 1.5 2002/10/27 11:49:34 kleink Exp $ */
/*-
int signum = SIGTERM;
int newest;
int oldest;
+char *pledge_choice = "stdio proc";
int quiet;
int inverse;
int longfmt;
if (strcmp(__progname, "pgrep") == 0) {
action = grepact;
+ pledge_choice = "stdio";
pgrep = 1;
} else {
action = killact;
if (plist == NULL)
errx(STATUS_ERROR, "kvm_getprocs() failed");
+ if (pledge(pledge_choice, NULL) == -1)
+ err(1, "pledge");
+
/*
* Allocate memory which will be used to keep track of the
* selection.