summaryrefslogtreecommitdiffstats
path: root/usr.bin/top/machine.c (follow)
Commit message (Expand)AuthorAgeFilesLines
* Allow reverse sort orderkn2018-11-281-22/+21
* Add new KERN_CPUSTATS sysctl(2) so we can identify offline CPUs.cheloha2018-11-171-41/+42
* Revert KERN_CPTIME2 ENODEV changes in kernel and userspace.cheloha2018-10-051-35/+24
* KERN_CPTIME2: set ENODEV if the CPU is offline.cheloha2018-09-261-24/+35
* Use user_from_uid() and uid_from_user() directly. The wrappersmillert2018-09-221-4/+4
* Fix warnings caused by user_from_uid() and group_from_gid() nowmillert2018-09-131-2/+2
* Stopping counting and reporting CPU time spent spinning on a lock asmpi2018-05-141-2/+2
* avoid some shadow warnings. from Brian Callahantedu2017-05-301-7/+7
* annoying whitespace die die diederaadt2017-03-151-8/+8
* rework realloc loop. there's no need to shrink the allocation betweentedu2016-07-281-10/+15
* Allow top(1) to filter process args if they are being displayed.edd2016-05-111-20/+65
* Do not cast result of malloc/calloc/realloc* if stdlib.h is in scopederaadt2015-08-201-3/+3
* Display thread IDs instead of the name of the process's owner when "-H"mpi2015-05-061-7/+19
* Kill loadavg.h and just use the fscale value directly.millert2015-01-191-12/+3
* like in ps(1), fetch the FSCALE value using sysctl rather than usingderaadt2015-01-191-1/+16
* Replace <sys/param.h> with <limits.h> and other less dirty headers wherederaadt2015-01-161-2/+3
* if there are more than 8 cpus, default to combined cpu stats (likedlg2014-09-171-6/+18
* Remove non-standard <sys/dkstat.h> header. It has not contained anythingmiod2014-09-151-2/+2
* Track whether a process is a zombie or not yet fully built via flagsguenther2014-07-041-2/+2
* Use VM_UVMEXP instead of VM_METER for memory usages and directlympi2014-04-081-9/+9
* wchan is no longer exposed, just check if wmesg is not empty.tedu2013-03-231-11/+5
* We no longer use struct eproc for kinfo_proc in sysctl.h so theremillert2012-12-181-5/+7
* According to miod, KERNBASE used as a userland symbol should diederaadt2012-07-091-2/+2
* Add support for hiding a user's processes in top.brynet2012-06-051-1/+4
* Remove a check made superfluous by the KERN_PROC_SHOW_THREADS flag.guenther2012-04-211-3/+1
* Make it optional for kvm_getprocs() (and related sysctl) to returnpirofti2012-04-171-2/+6
* Add per thread accounting, mainly for usage & friends.pirofti2012-04-121-1/+5
* print out the amount of memory used for cache. ok ottotedu2011-07-121-7/+18
* Switch back from KERN_PROC2/kinfo_proc2 to KERN_PROC/kinfo_proc nowguenther2011-04-101-42/+42
* more portable codederaadt2010-04-261-2/+4
* Make the source of process TIME for displaying and sorting the same.lum2010-03-261-22/+2
* Allow sorting by command and pid. Also, allow partial matches with strncmp.tedu2010-01-291-2/+57
* extend STATE column to fit > 9 cpus; Aivar Jaakson; PR6131deraadt2009-04-281-3/+3
* bump arbitrary limit on arg length shown by -C; requested by and ok deraadt@otto2007-11-011-4/+3
* replace a few more malloc(n*m) idioms with calloc(n,m) for safety;deraadt2007-07-271-6/+6
* Instead of using hand-crafted redraws minimizing screen updates, use curses.otto2007-05-291-2/+3
* don't truncate wchan, ok miod@otto2007-04-161-3/+3
* include cleanup and fix in comment; from Mark Lumsdenotto2007-04-131-10/+3
* missing prototypes; from Mark Lumsden with a twist by me.otto2007-04-041-3/+5
* long and long long is not the same on 32 bits archsotto2007-02-041-2/+2
* Add a 'g' command to only show processes having a string in theirotto2007-01-031-3/+6
* top(1) doesn't use any math.h function, so do not include math.h andotto2007-01-021-2/+1
* Do not test for processes being swapped out since this can't happen anymore.miod2006-11-291-10/+1
* Recommit memory leak fix.ray2006-09-201-2/+4
* use calloc(3) instead of malloc(3) to allocate cpu state structs; it'sotto2006-04-291-4/+4
* Userland programs should include <errno.h> not <sys/errno.h>millert2005-12-211-2/+2
* support for toggling thread viewing.tedu2005-12-041-3/+5
* add a 'C' command ) that toggles the display of the full cmdline;markus2005-06-171-3/+39
* Multi-cpu support for top. Each cpu now gets its own stats line.millert2005-06-081-14/+49
* missing space; bluhm at genua.demarkus2004-12-061-2/+2