Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix a typo. | ru | 2007-11-09 | 1 | -1/+1 |
| | |||||
* | - Fix documentation to match code. Specifically, -c doesn't have | ru | 2007-11-09 | 1 | -21/+15 |
| | | | | | | | to be specified together with either -u or -t to have an effect, and exit status of 2 is not possible after a Perl->C conversion. - While here, fix markup. | ||||
* | Fix numerous bugs when parsing options and arguments. | ru | 2007-11-09 | 1 | -9/+19 |
| | |||||
* | Added the EXIT STATUS section where appropriate. | ru | 2005-01-17 | 1 | -2/+2 |
| | |||||
* | The signal number has to be less than NSIG strictly. | maxim | 2004-07-29 | 1 | -1/+1 |
| | | | | | | PR: misc/69768 Submitted by: bronek MFC after: 1 week | ||||
* | Don't pass negative values into <ctype.h> functions on machines | tjr | 2004-07-15 | 1 | -3/+3 |
| | | | | with signed chars. | ||||
* | Print size_t with %zu, not %d. | tjr | 2004-07-15 | 1 | -1/+1 |
| | |||||
* | Respect locale settings from the environment. | tjr | 2004-07-15 | 1 | -0/+3 |
| | |||||
* | Mechanically kill hard sentence breaks. | ru | 2004-07-02 | 1 | -5/+9 |
| | |||||
* | Bump document date on behalf of the -e option. | ru | 2004-05-18 | 1 | -2/+2 |
| | | | | Spell "ID" correctly. | ||||
* | Add a cross-reference to pkill(1), now that pkill is hooked up to the build. | gad | 2004-03-27 | 1 | -0/+1 |
| | |||||
* | New -e flag, modifies the behavior of the -u uid flag to use the | dds | 2004-01-26 | 2 | -4/+16 |
| | | | | | | effective user id, instead of the real user id. MFC after: 2 weeks | ||||
* | Serial murderers shouldn't commit suicide. (killall should | cperciva | 2004-01-22 | 1 | -0/+4 |
| | | | | | | | avoid killing itself.) PR: bin/46107 Submitted by: stacey <stacey_@starwhack.net> | ||||
* | o -m flags contructs case sensitive RE, not case insensitive. | maxim | 2004-01-18 | 1 | -1/+1 |
| | | | | MFC after: 1 week | ||||
* | o Sync usage() and man page synopsis with reality. | maxim | 2004-01-18 | 2 | -9/+3 |
| | | | | MFC after: 1 week | ||||
* | Use the 3-component version of the KERN_PROC_PROC sysctl. | tjr | 2003-09-27 | 1 | -1/+3 |
| | |||||
* | Use KERN_PROC_PROC instead of KERN_PROC_ALL when enumerating processes so | tjr | 2003-09-07 | 1 | -7/+4 |
| | | | | | that we kill each process once, not once for every thread it owns. This avoids "No such process" warnings when killing threaded processes. | ||||
* | make "killall -j" not core dump. | imp | 2003-04-27 | 1 | -0/+2 |
| | | | | Submitted by: Joe Marcus Clarke in current@ | ||||
* | o Add jls(8) for listing active jails. | mike | 2003-04-09 | 2 | -4/+28 |
| | | | | | | | o Add jexec(8) to execute a command in an existing jail. o Add -j option for killall(1) to kill all processes in a specified jail. o Add -i option to jail(8) to output jail ID of newly created jail. | ||||
* | Header was included twice. Hardcode program name in usage string. | charnier | 2003-02-05 | 1 | -5/+1 |
| | |||||
* | s/progname/procname/ to be consistent with the other occurrences | rse | 2002-07-15 | 1 | -1/+1 |
| | | | | of the option -c argument in SYNOPSIS and DESCRIPTION. | ||||
* | Consistently use FBSDID | obrien | 2002-06-30 | 1 | -2/+3 |
| | |||||
* | mdoc(7) police: lint. | ru | 2002-05-29 | 1 | -1/+1 |
| | |||||
* | Mark a warning as such. Without this, it isn't obvious whether | dd | 2002-05-20 | 1 | -2/+2 |
| | | | | | killall stopped after failing to kill one process or whether it kept going. | ||||
* | Use `The .Nm utility' | charnier | 2002-04-20 | 1 | -3/+4 |
| | |||||
* | Skip zombies. Add an option (-z) to revert to the historical behaviour | des | 2002-04-14 | 2 | -0/+11 |
| | | | | | of trying to kill zombies (which has no effect except emit a few error messages) | ||||
* | Use the method described in the strtol man page to check if it parsed | dwmalone | 2002-03-30 | 1 | -1/+1 |
| | | | | the entire string. This avoids signed/unsigned comparison. | ||||
* | killall operates on all processes owned by the real uid, not the | bsd | 2001-11-30 | 1 | -2/+2 |
| | | | | | | effective uid. MFC after: 3 days | ||||
* | Compensate for "Compensate for header dethreading" by backing it out. | bde | 2001-10-10 | 1 | -1/+0 |
| | |||||
* | mdoc(7) police: | ru | 2001-08-07 | 1 | -1/+2 |
| | | | | | | | Avoid using parenthesis enclosure macros (.Pq and .Po/.Pc) with plain text. Not only this slows down the mdoc(7) processing significantly, but it also has an undesired (in this case) effect of disabling hyphenation within the entire enclosed block. | ||||
* | Remove whitespace at EOL. | dd | 2001-07-15 | 1 | -5/+5 |
| | |||||
* | mdoc(7) police: removed HISTORY info from the .Os call. | ru | 2001-07-10 | 1 | -1/+1 |
| | |||||
* | Allow -u to work with UID's also. | obrien | 2001-06-12 | 1 | -6/+9 |
| | | | | Submitted by: Seth Kingsley <seth.kingsley@windriver.com> | ||||
* | Fix an array which was too small. | phk | 2001-05-16 | 1 | -1/+1 |
| | | | | | PR: 27380 Submitted by: Samuel Greear <sgreear@vsni.com> | ||||
* | Compensate for header dethreading. | markm | 2001-05-01 | 1 | -0/+1 |
| | |||||
* | Work around the p_comm[] size limit. If the user supplies more than | peter | 2001-02-14 | 1 | -1/+1 |
| | | | | | | | 16 characters, only check the first 16 since that is all the kernel records. This isn't ideal, but it is probably the best we can do. Otherwise, "killall communicator-linux-4.76.bin" will not match the process as the kernel only records "communicator-lin". | ||||
* | Fix typo: -c -> -t | ache | 2001-01-21 | 1 | -1/+1 |
| | |||||
* | Make "killall -t p0" really works. | ache | 2001-01-21 | 1 | -1/+2 |
| | | | | Old code works only if at least one process name additionly specified. | ||||
* | Use the real user ID so non-root users can kill setuid processes | ps | 2000-12-25 | 1 | -1/+1 |
| | | | | | | | they started. PR: 23356 Submitted by: Maxim Konovalov <maxim@macomnet.ru> | ||||
* | Prepare for mdoc(7)NG. | ru | 2000-12-19 | 1 | -4/+4 |
| | |||||
* | mdoc(7) police: removed history info from the .Os FreeBSD call. | ru | 2000-12-14 | 1 | -1/+1 |
| | |||||
* | Catch up to the new kinfo_proc. | jhb | 2000-12-12 | 1 | -4/+4 |
| | |||||
* | mdoc(7) police: do not split author names in the AUTHORS section. | ru | 2000-11-22 | 1 | -0/+1 |
| | |||||
* | mdoc(7) police: use the new features of the Nm macro. | ru | 2000-11-20 | 1 | -1/+1 |
| | |||||
* | -U cannot be an option since some signals start with U. -u is the | ps | 2000-11-12 | 1 | -1/+0 |
| | | | | documented behavior so only check for that. | ||||
* | Avoid use of direct troff requests in mdoc(7) manual pages. | ru | 2000-11-10 | 1 | -3/+4 |
| | |||||
* | After positive feedback from a few folks, activate a switchover to | peter | 2000-08-28 | 4 | -155/+36 |
| | | | | | | | | | using killall.c instead of the perl version that depends on procfs. The C version uses sysctl(). The program is based on a hack that was originally written about 6 years ago and has evolved somewhat since then. (which is why it is a superset of killall.pl, rather than being a clone.) With apologies to: wosch | ||||
* | Try and fix up some bogus indentation leftovers from emacs several | peter | 2000-08-27 | 1 | -2/+2 |
| | | | | years ago. | ||||
* | Sigh, today is not my day. Convert a verbose while() .. loop into a for() | peter | 2000-08-27 | 1 | -4/+1 |
| | | | | | | loop. Submitted by: billf | ||||
* | *blush*. I was *sure* I compiled this after the last change.. | peter | 2000-08-27 | 1 | -1/+1 |
| | | | | | | Add the missing ) Shamed by: billf |