index
:
src
cvs/HEAD
kms/intel
kms/radeon
master
OpenBSD base system
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
usr.bin
/
pkill
/
pkill.c
Age
Commit message (
Expand
)
Author
2016-10-10
- mark delim variable as const. it is a literal string;
Gleydson Soares
2015-10-11
fix a regression spotted by chris@. the -f and -I arguments fetch process
Theo de Raadt
2015-10-10
pkill has to get all the getopt, getpwuid, libkvm stuff out of the way
Theo de Raadt
2015-01-16
Replace <sys/param.h> with <limits.h> and other less dirty headers where
Theo de Raadt
2014-05-07
calloc, from peter malone
Ted Unangst
2013-11-12
simpler prototype repairs
Theo de Raadt
2013-09-22
Stop merging the per-thread and per-process flags when reporting
Philip Guenther
2013-06-03
-I to confirm pkills. ok many
Ted Unangst
2012-12-12
properly handle the case where a process has disappeared in between grep'ing
Alexander Hall
2012-08-21
Missing "-q" in usage().
Antoine Jacoutot
2012-08-21
add -q "silent" option similar to grep
Marc Espie
2012-07-10
make pkill -l print the proper processes also when the invert (-v)
Alexander Hall
2012-04-21
Remove a check made superfluous by the KERN_PROC_SHOW_THREADS flag.
Philip Guenthe
2012-04-12
Add per thread accounting, mainly for usage & friends.
Paul Irofti
2012-03-13
Teach pgrep/pkill to only match processes, not threads. ok guenther@
Stuart Henderson
2012-03-01
Remove unused variable. Added in 1.20 by me.
lum
2012-02-16
exit usage() with STATUS_BADUSAGE rather than STATUS_ERROR, per the man page;
Jason McIntyre
2012-02-15
avoid usage() warping onto the next line;
Jason McIntyre
2012-02-09
restrict pkill/pgrep to the routing domain specified by -T; ok henning@, mpf@
Markus Friedl
2012-01-17
Allow pkill to use the -l option. This displays which processes have been
lum
2011-04-10
Switch back from KERN_PROC2/kinfo_proc2 to KERN_PROC/kinfo_proc now
Philip Guenthe
2009-10-28
rcsid[] and sccsid[] and copyright[] are essentially unmaintained (and
Theo de Raadt
2008-06-26
First pass at removing clauses 3 and 4 from NetBSD licenses.
Ray Lai
2008-02-07
Add add -o flag to pkill/pgrep like on Solaris and Linux.
Todd C. Miller
2006-09-19
Use S_IS* macros insted of masking with S_IF* flags. The latter may
Otto Moerbeek
2005-07-16
sort options and sync usage();
Jason McIntyre
2005-05-20
Don't print an empty line when no match is found in pgrep mode.
Otto Moerbeek
2005-04-11
handle snprintf return value overflow case; ok otto
Theo de Raadt
2005-03-27
revert r1.9; this one needs more discussion
Robert Nagy
2005-03-27
add a -i option to ignore case distinctions in the process match;
Robert Nagy
2005-03-02
Report non-existing user or groupname correctly. From David Brownlee
Otto Moerbeek
2005-02-11
Fix -d option; it should print a newline at EOL, not the specified delimeter.
Todd C. Miller
2004-12-29
handle snprintf -1; otto ok
Theo de Raadt
2004-07-15
Don't print a warning if kill(2) returns ESRCH since the process may have
Todd C. Miller
2004-07-15
Skip SYSTEM and ourown proccess on every loop.
Mike Pechkin
2004-06-24
When given multiple processes to kill, keep going if we are unable to kill
Todd C. Miller
2004-03-12
knf
Theo de Raadt
2004-01-07
Convert back to using kvm_getproc2() and friends now that libkvm
Todd C. Miller
2004-01-06
pkill/pgrep from NetBSD with changes to use kvm_getprocs(). Selecting
Todd C. Miller