aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/gstat
Commit message (Collapse)AuthorAgeFilesLines
* MFC: (1.14) set default refresh interval to one secondDag-Erling Smørgrav2007-05-241-1/+1
| | | | Notes: svn path=/stable/6/; revision=169938
* MFC:Simon L. B. Nielsen2006-06-103-41/+159
| | | | | | | | | | | | | | | | | | | | | | - Add support for filtering the the list of providers by a regular expression, which makes it possible to only see interesting providers. "f" is used inside gstat to set a filter, "F" is used to remove current filter. - Do not print some uninteresting values in the gstat title line. - Do not print past the end of the screen. - Read multiple keystrokes per "wait" when gstat is running. - Remove a redundant != check, right after check of NULL against the same variable ("gid"). - Use sysexits.h. - Do not link against libkvm and libsbuf, they are not actually used. - Fix a few style(9) issues where I had to touch nearby code anyway. src/usr.sbin/gstat/Makefile: rev 1.6 -> 1.7 src/usr.sbin/gstat/gstat.8: rev 1.7 -> 1.8 src/usr.sbin/gstat/gstat.c: rev 1.12 -> 1.13 Notes: svn path=/stable/6/; revision=159485
* Add cross-references to iostat, systat and vmstat.Giorgos Keramidas2005-05-271-1/+4
| | | | Notes: svn path=/head/; revision=146665
* Remove unnecessary SRCS= where could be guessed directly by ourXin LI2005-01-271-1/+0
| | | | | | | | | bsd.*.mk infrasture. Obtained from: ru Notes: svn path=/head/; revision=140909
* Added the EXIT STATUS section where appropriate.Ruslan Ermilov2005-01-171-1/+1
| | | | Notes: svn path=/head/; revision=140368
* Add forgotten -a to the usage() message.Lukas Ertl2005-01-051-1/+1
| | | | Notes: svn path=/head/; revision=139722
* Add an '-a' switch to only display providers that are at leastLukas Ertl2004-10-102-3/+13
| | | | | | | | | 0.1% busy. OK'ed by: phk Notes: svn path=/head/; revision=136354
* Added forgotten -d to the usage().Ruslan Ermilov2004-06-041-1/+1
| | | | Notes: svn path=/head/; revision=130093
* Markup nits.Ruslan Ermilov2004-06-041-3/+4
| | | | Notes: svn path=/head/; revision=130087
* Remove spurious semicolons. Outside of functions they are actually errors butStefan Farfeleder2004-05-161-1/+1
| | | | | | | | | | | GCC doesn't warn about them without -pedantic. Approved by: das (mentor) PR: 56649 Reviewed by: md5 Notes: svn path=/head/; revision=129302
* Correct a typo in column header.Matthew N. Dodd2004-05-151-1/+1
| | | | | | | | Submitted by: phk Obtained from: BSDCan Notes: svn path=/head/; revision=129267
* Make libgeom usable by C++ programs:John Baldwin2004-03-091-9/+10
| | | | | | | | | | | | | - Add DECL wrappers to libgeom.h. - Rename structure members in libgeom.h to use a lg_ prefix for member names. This is required because a few structures had members named 'class' which made g++ very unhappy. - Catch gstat(8) and gconcat(8) up to these API changes. Reviewed by: phk Notes: svn path=/head/; revision=126786
* Add -d flag to monitor BIO_DELETE operations tooPoul-Henning Kamp2004-02-152-4/+27
| | | | Notes: svn path=/head/; revision=125844
* Sigh, I guess this manpage used cat(1) as a template?Ruslan Ermilov2003-05-311-7/+6
| | | | | | | | Otherwise, fix the manpage to not use the second person, and add two missing punctuation bits. Notes: svn path=/head/; revision=115475
* Install the gstat manual page.Tim J. Robbins2003-04-281-1/+1
| | | | Notes: svn path=/head/; revision=114160
* Make -c only set flag_c and not a toggle. With flag_c disabled byGiorgos Keramidas2003-03-221-1/+1
| | | | | | | | default, this makes the behavior of gstat more predictable when -c is specified multiple times on the command line. Notes: svn path=/head/; revision=112491
* Add a small manpage.Giorgos Keramidas2003-03-221-0/+87
| | | | Notes: svn path=/head/; revision=112490
* Add & use a usage() function.Giorgos Keramidas2003-03-221-2/+12
| | | | Notes: svn path=/head/; revision=112488
* Add error and range checking to strtoul() to avoid ending up with aGiorgos Keramidas2003-03-221-1/+2
| | | | | | | delay time of ULONG_MAX when -I is passed a non-numeric arg. Notes: svn path=/head/; revision=112487
* Why doesn't anybody ever tell me anything? When did we get a libsbuf ?Poul-Henning Kamp2003-03-211-5/+3
| | | | | | | | | | | Geeze, I'll just crawl back into the kernel where I know what's going on... Use libsbuf instead of pulling a file in from the kernel. Taught by: jhb Notes: svn path=/head/; revision=112468
* Fixed a typo in ${.CURDIR} spelling, fatal on systemsRuslan Ermilov2003-03-211-12/+5
| | | | | | | | | | | | without the /sys symlink pointing to the current tree. (Revision 1.2 made it non-fatal, but anyway.) Apply style.Makefile(5). Fixed ``make checkdpadd''. Notes: svn path=/head/; revision=112462
* Duh! Use correct number ../Poul-Henning Kamp2003-03-211-1/+1
| | | | | | | spotted by: imp Notes: svn path=/head/; revision=112460
* Call endwin() to restore terminal state just before exiting.Giorgos Keramidas2003-03-211-0/+2
| | | | | | | Approved by: phk Notes: svn path=/head/; revision=112457
* Add a rudimentary gstat(8) to the system.Poul-Henning Kamp2003-03-202-0/+251
This is a small curses based program which shows the diskactivity inside GEOM. Notes: svn path=/head/; revision=112444