summaryrefslogtreecommitdiffstats
path: root/contrib/top
Commit message (Collapse)AuthorAgeFilesLines
* Since top displays the uptime including seconds, there is no need to add 30brucec2010-08-171-1/+0
| | | | | | | | | onto it, which may have been used for rounding purposes in other utilities. PR: bin/147934 Submitted by: Janne Snabb <snabb at epipe.com> Approved by: rrs (mentor) MFC after: 2 weeks
* Make these files compile with clang.rpaulo2010-07-221-0/+1
| | | | Submitted by: Dimitry Andric <dimitry at andric.com>
* Fix brokenness in top on big-endian 32-bit systems introduced whennwhitehorn2010-04-191-1/+1
| | | | | | | changing format_k2 to take a long long. Because itoa is defined as a K&R C function, without prototyping its arguments, format_k2 passed a 64-bit value, but itoa() received only the first word, showing '0' in all memory fields.
* Specify the parameter in the format_k2 prototype.brucec2010-04-011-1/+1
| | | | | | This fixes top on ARM, which assumes that format_k2 takes an int. Approved by: rrs (mentor)
* Change the 'amt' parameter in format_k2 from int to unsigned long longbrucec2010-03-131-1/+1
| | | | | | | | | to match the values passed in and prevent the SIZE field being corrupted when more than 2TB is allocated. PR: bin/129706 Approved by: rrs (mentor) MFC after: 1 week
* Let top(1) use MAXLOGNAME instead of UT_NAMESIZE.ed2009-12-251-3/+3
| | | | The maximum user login length should have nothing to do with <utmp.h>.
* Explicitly line up the CPU state labels with the calculated starting columnjhb2009-08-191-0/+2
| | | | | | | | | that takes into account the width of the largest CPU ID. On systems with > 10 CPUs the labels for the first 10 CPUs were not lined up properly otherwise. Approved by: re (kib) MFC after: 1 week
* Merge r183430 from vendor/top/dist to head/contrib/top, although withrwatson2009-03-101-0/+0
| | | | | | | | | record-only mergeinfo because an automated merge is confused by the flattening that took place: Move install to install-sh to prevent name-clashes. MFC after: 3 days
* Removed the no-op -p; documented -P.ru2008-06-212-7/+6
| | | | MFC after: 3 days
* system_info.cpustates isn't sparse, so a bitmask of available CPU statesru2008-04-111-1/+0
| | | | is redundant (I think it's a leftover from an older implementation).
* Add a -P flag to display per-cpu cpu usage stats.peter2008-01-185-39/+107
|
* Improve -u (limit uid lookups) behavior.obrien2008-01-091-1/+1
| | | | | Submitted by: David Frascone <dave@frascone.com> PR: 119490
* - s/jail id/jail ID/, acronyms should be in uppercase in general. Also,rafan2007-05-044-5/+5
| | | | | | | it is written this way in jail(8). Suggested by: brueffer Approved by: delphij (mentor, implicit)
* - Add documentation notes for the 'a' option, forgotten in the previousstas2007-05-032-0/+4
| | | | | | | | | commit. commands.c [1] top.X Suggested by: rafan [1]
* - Add new 'a' and 'j' options into usagerafan2007-04-191-1/+1
| | | | | Approved by: delphij (mentor, implicit) Forgotten by: stas ('a') and rafan ('j')
* - Add a new 'j' switch and runtime option to toggle display jail id forrafan2007-04-174-8/+38
| | | | | | | | | | each process. - While I'm here, keep help message sorted by keys PR: 98489, 98975 Submitted by: clsung Approved by: delphij (mentor) MFC after: 2 weeks
* - Add new 'a' switch and runtime option that allows 'top' to display processstas2007-04-143-6/+28
| | | | | | | | | titles extracted from argv vector instead of the real executable names. This is useful when you want to watch applications that set their status information via setproctitle(3). Approved by: alfred MFC after: 2 weeks
* The sigconv.awk script generates a sigdesc.h header file, whichkeramida2006-12-011-7/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | contains a sigdec[] vector of structures, but the generated output is missing braces around the initializer of each struct, which triggers warnings in WARNS=3: src/usr.bin/top/sigdesc.h:10: warning: missing braces around initializer src/usr.bin/top/sigdesc.h:10: warning: (near initialization for `sigdesc[0]') * Fix the sigconv.awk script to generate a header with initializers which look better. * Add rules to usr.bin/top/Makefile that rebuilds a new sigconv.h header which matches the correct signal set from the build-time version of `${DESTDIR}/usr/include/signal.h' (so sigconv.h doesn't get stale once changes are made to the header). * Remove the old sigconv.h header, now that it is autoupdated at build time. * Various Makefile style fixes (the committed Makefile was kindly submitted by Ruslan): - Reorder .PATH, PROG, SRCS and CFLAGS to match style.Makefile(5) - Split off the generated sources (sigdesc.h top.local.h) in an SRCS+= line of their own. - Add entries to CLEANFILES near the rules that generate the respective files. - Move the explicit rule which builds top.1 after the implicit rules which generate its dependencies. Reviewed by: ru, bde Submitted by: ru (Makefile) MFC after: 2 weeks
* Update the description of the `STATE' column for SMP systems,keramida2006-05-161-2/+6
| | | | | | | | | and add the missing `C' SMP-only column. PR: docs/29245 Submitted by: ada@bsd.org Patch by: Pawel Worach <pawel.worach@telia.com> MFC after: 3 days
* Re-add option -C to usage().ru2006-04-191-1/+1
|
* Document the -C option of top(1), which has been added to the sourcekeramida2006-04-191-1/+13
| | | | | | | | and the usage message of top, but not to the manpage. Pointy hat to: keramida Reminded by: ru MFC after: 1 week
* Bring SYNOPSIS in line with usage().ru2006-04-182-7/+8
|
* Typo.keramida2005-10-261-1/+1
| | | | | | PR: docs/88015 Submitted by: Marian Cerny <jojo@matfyz.cz> MFC after: 3 days
* The 'text' argument of u_header() is not used, so we don't need tokeramida2005-05-191-6/+0
| | | | | | trim_header() it. Noticed by: bde
* Properly trim the header line too, to fix wrap-around problems thatkeramida2005-05-181-1/+41
| | | | | | | | | | | | have been noticed by running top(1) in terminals that are too narrow (or on systems with usernames that were too long, pushing everything too far to the right). Note that this does *not* solve the wrap-around problem of the system statistics, which is an entirely different matter :-/ Tested on: i386, sparc64 (panther), amd64 (sledge) Approved by: davidxu (in principle)
* Merge the CPU and WCPU columns in a single %6.2f column, add a new 'C'keramida2005-05-183-7/+24
| | | | | | | | | | | command that toggles between the two and update the ORDER_PCTCPU() macro to sort correctly by the visible "cpu" value. This saves 6 more columns in 80-column terminals, making things a lot better for the COMMAND column. Tested on: i386, sparc64 (panther), amd64 (sledge) Approved by: davidxu (in principle)
* - Add a THR column to the process listing, that shows the number ofkeramida2005-04-142-4/+6
| | | | | | | | | threads a process has. The THR column is disabled and disappears when 'H' is hit, because then every thread gets its own output line. - Allow sorting processes by "threads". Approved by: davidxu Inspired by: Jiawei Ye <leafy7382@gmail.com>
* Correct macro usage.brueffer2005-03-131-1/+1
| | | | | Submitted by: Christoph Mallon <christoph.mallon@gmx.de> MFC after: 3 days
* This patch merges the sort fields for both pages, so you can (foralfred2004-08-162-7/+3
| | | | | | | | example) view io stats while sorting by process size. Also adds voluntary and involuntary context-switch stats to the io page because there was lots of room. Submitted by: Dan Nelson dnelson at allantgroup.com
* document the 'I' and 't' commands in the help screen in top(1).alfred2004-07-121-2/+3
| | | | Submitted by: Alex Vasylenko lxv omut.org
* Make 'S' in interactive mode toggle display of system processes.alfred2004-07-123-3/+11
|
* Build upon the nice work of Alfred and add sorting capabilities tokeramida2004-07-082-6/+13
| | | | | | the -m "io" mode of top. Approved by: alfred
* Correct a misleading (cut'n'pasted) comment.des2004-07-051-1/+1
|
* New feature, provide a display that shows the amount of IO processesalfred2004-07-013-10/+55
| | | | | | are doing. Toggle this mode by hitting "m" or passing the command line option "-m io" to top(1). This allows one to identify disk bandwidth hogs much easier.
* Replace a reference to /kernel with /boot/kernel/kerneleivind2003-08-261-1/+1
|
* Changes to allow top to decide whether or not to show multiple threads perjulian2003-07-173-5/+20
| | | | | | | process. Option -H enables it and it is toggled at the interactive screen by 'H'. Submitted by: Jung-uk Kim <jkim@niksun.com>
* Fix a bug where you couldn't start top in a very small window. Nowdwmalone2002-08-111-0/+2
| | | | | | | | | you can start it in a small window, but it doesn't always display anything sensible. Resizing the window does work though. The patch is a slightly simpler one than Sheldon's in the PR. PR: 21075
* Don't depend on <pwd.h> to bogusly include <sys/types.h>.mike2002-06-091-0/+3
|
* Resolve conflicts.dwmalone2002-01-243-10/+40
|
* Resolve conflicts (our -t option, we'd fixed a bug in a slightly different way).dwmalone2002-01-241-13/+38
|
* Resolve conflicts (we have a -t option).dwmalone2002-01-241-2/+14
|
* Resolve conflict: We made a fix renaming a structure member error,dwmalone2002-01-241-6/+8
| | | | but it was renamed errnum on the vendor branch.
* This commit was generated by cvs2svn to compensate for changes in r89750,dwmalone2002-01-2415-197/+494
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * import top_3_5beta12dwmalone2002-01-2421-228/+585
| |
* | Make top exit if its tty vanishes.dwmalone2001-11-041-2/+8
| | | | | | | | | | | | | | PR: 30939, 30581 Submitted by: Edwin Groothuis <edwin@mavetju.org> Submitted by: Andrew L. Neporada <andr@dgap.mipt.ru> MFC after: 2 weeks
* | Don't do unsafe activities inside signal handlers. Just set a flag andkris2001-08-061-44/+54
| | | | | | | | | | | | | | return. Obtained from: OpenBSD Reviewed by: audit
* | Fix another possible bufer overflow in top.imp2000-11-031-1/+1
| | | | | | | | PR: bin/22496
* | display.c: sprintf -> snprintfimp2000-10-042-2/+6
| | | | | | | | | | | | | | | | | | top.c: fix from NetBSD/OpenBSD: make sure that new_message() is called with a format. Add $FreeBSD$ While I'm here. These files are already off the vendor branch.
* | Don't declare ospeed as a common - and it happens to be incorrect as well.peter2000-09-161-1/+2
| | | | | | | | top doesn't use it and it causes a linker warning.
* | Correct default value for -s option.phantom2000-07-201-1/+2
| | | | | | | | | | PR: bin/12946 Submitted by: Matthew D. Fuller <fullermd@over-yonder.net>
OpenPOWER on IntegriCloud