#
760bbf7d |
| 17-Sep-2002 |
Juli Mallett <jmallett@FreeBSD.org> |
Conglomerate printing of ps_pgtok'd data into a PLONG type. I couldn't think of a better name, except PINT, but I decided to go with assuming LONG to be safe, rather than assuming INT.
|
#
f3073b05 |
| 16-Sep-2002 |
Juli Mallett <jmallett@FreeBSD.org> |
Perform keyword.c:1.27 properly, implement -orss in the New World Order of ps(1) formatting, using pgtok() to get the value in K, rather than printing it in pages. This is consistent with behaviour
Perform keyword.c:1.27 properly, implement -orss in the New World Order of ps(1) formatting, using pgtok() to get the value in K, rather than printing it in pages. This is consistent with behaviour before keyword.c:1.26 (et al) which exists in STABLE today, and which uses the same metric as VSZ.
Submitted by: bde
show more ...
|
#
4086fd8e |
| 16-Sep-2002 |
Juli Mallett <jmallett@FreeBSD.org> |
Remove some NOTINUSE stuff. Good housekeeping.
|
Revision tags: release/4.6.2_cvs, release/4.6.2, release/4.6.1 |
|
#
a755f1c9 |
| 08-Jul-2002 |
Robert Drehmel <robert@FreeBSD.org> |
- Use (MAXLOGNAME - 1) where UT_NAMESIZE was used to be able to (-)remove the inclusions of <utmp.h>.
|
Revision tags: release/4.6.0_cvs |
|
#
2749b141 |
| 30-Jun-2002 |
David E. O'Brien <obrien@FreeBSD.org> |
Consistently use FBSDID
|
#
2dda9fe9 |
| 08-Jun-2002 |
Juli Mallett <jmallett@FreeBSD.org> |
Allow whitespace to act as a delimiter in the keywords list given to the -o, again, but also allow it in the user-specified header, too. This is far more backwards compatible and SUSv3-happy than al
Allow whitespace to act as a delimiter in the keywords list given to the -o, again, but also allow it in the user-specified header, too. This is far more backwards compatible and SUSv3-happy than allowing only comma to seperate the keywords list.
Submitted by: tjr
show more ...
|
#
76e1a9fe |
| 06-Jun-2002 |
Juli Mallett <jmallett@FreeBSD.org> |
Implement a SUSv3-ignorant but "time"-similar format for "etime", elapsed run time (NOT cpu time). cputime() and elapsed() both need to honour SUSv3 now.
|
#
e8eef4bb |
| 06-Jun-2002 |
Juli Mallett <jmallett@FreeBSD.org> |
Support the SUSv3 `rgroup' format.
Clean up some local style bogons.
|
#
03334017 |
| 06-Jun-2002 |
Juli Mallett <jmallett@FreeBSD.org> |
SUSv3 conform on the "comm" and "args" formats, and make correct the "command" format, since it's BSDlike, and "comm" is actually different.
|
#
40fea9c3 |
| 06-Jun-2002 |
Juli Mallett <jmallett@FreeBSD.org> |
As per behaviour on SVR4 systems, to allow any desirable type of header in the override, seperate by comma (',') only, rather than any type of whitespace (the literal space character (' ') had alread
As per behaviour on SVR4 systems, to allow any desirable type of header in the override, seperate by comma (',') only, rather than any type of whitespace (the literal space character (' ') had already been removed from this list).
This allows things like: miamivice# ps -opid='Process > Identifier' Process Identifier 1350 1445 1450
To work.
show more ...
|
#
4fa7d788 |
| 05-Jun-2002 |
Juli Mallett <jmallett@FreeBSD.org> |
Widen the scope of fmt.c::1.19 and consistently use errx(3) if malloc(3) [or realloc(3)] happens to fail, everywhere in ps(1).
Discussed with: bde, charnier (a while ago)
fmt_argv() can no longer r
Widen the scope of fmt.c::1.19 and consistently use errx(3) if malloc(3) [or realloc(3)] happens to fail, everywhere in ps(1).
Discussed with: bde, charnier (a while ago)
fmt_argv() can no longer return NULL, so don't bother checking.
Submitted by: bde
show more ...
|
#
d9cd71b6 |
| 05-Jun-2002 |
Juli Mallett <jmallett@FreeBSD.org> |
Support the 'comm' keyword, which is equivalent to our 'command', but specified by SUSv3.
|
#
cf77c2ce |
| 05-Jun-2002 |
Juli Mallett <jmallett@FreeBSD.org> |
A space cannot be a header string seperator it appears given the SUSv3 description of ps(1), which uses them. I question whether newline and tab can be either, but I'm not touching them. Yet.
|
#
6d041cc8 |
| 05-Jun-2002 |
Juli Mallett <jmallett@FreeBSD.org> |
To comply with SUSv3, duplicate the variable contents for each given format, so that multiple -ovar=header lines do not overwrite eachother.
This means that ps -ouser=USERNAME -ouser=WHO would now p
To comply with SUSv3, duplicate the variable contents for each given format, so that multiple -ovar=header lines do not overwrite eachother.
This means that ps -ouser=USERNAME -ouser=WHO would now possibly print: USERNAME WHO juli juli
Whereas before it would be: WHO WHO juli juli
show more ...
|
#
a89d0c4d |
| 05-Jun-2002 |
Juli Mallett <jmallett@FreeBSD.org> |
Duplicate the pointer to the string containing the header so it does not get frobbed when/if the pointer it is actually a part of gets freed.
|
#
d9a5f890 |
| 21-Feb-2002 |
Matthew Dillon <dillon@FreeBSD.org> |
Revert wchan functionality. Add 'mwchan' to supply new duel mutex/msleep functionality and make it the default.
With additional improvements by: Mark Peek <mp@FreeBSD.org>
|
Revision tags: release/4.5.0_cvs, release/4.4.0_cvs |
|
#
871e8d8c |
| 03-Feb-2002 |
Mark Murray <markm@FreeBSD.org> |
WARNS=4 fixes (incomplete, so set NO_WERROR), and lots of extra cleanup courtesy of automatic checking (lint).
|
#
46251dde |
| 02-Feb-2002 |
Warner Losh <imp@FreeBSD.org> |
o __P has been reoved o Old-style K&R declarations have been converted to new C89 style o register has been removed o prototype for main() has been removed (gcc3 makes it an error) o int main(int arg
o __P has been reoved o Old-style K&R declarations have been converted to new C89 style o register has been removed o prototype for main() has been removed (gcc3 makes it an error) o int main(int argc, char *argv[]) is the preferred main definition. o Attempt to not break style(9) conformance for declarations more than they already are.
show more ...
|
#
a2e4c36a |
| 05-Jan-2002 |
Peter Wemm <peter@FreeBSD.org> |
Put the "mtxname" keyword in alphabetical order (t comes after s) so that the keyword is recognized.
|
#
7304f61f |
| 26-Nov-2001 |
Brian Feldman <green@FreeBSD.org> |
Add LOMAC options (the "Z" flag in both cases) to display extra information in ls(1) and ps(1).
Sponsored by: DARPA, NAI Labs
|
#
7d1192a7 |
| 24-Aug-2001 |
Peter Wemm <peter@FreeBSD.org> |
On today's kernels masking with ~KERNBASE is turning out to be less than useful. It still hits at least 8 digits. Adjust for reality.
This is still not satisfactory for the alpha if you add "-O pad
On today's kernels masking with ~KERNBASE is turning out to be less than useful. It still hits at least 8 digits. Adjust for reality.
This is still not satisfactory for the alpha if you add "-O paddr".
show more ...
|
#
25bba4f6 |
| 03-May-2001 |
Mark Murray <markm@FreeBSD.org> |
Depollute headers now that the VM headers DTRT.
|
#
325a83b4 |
| 01-May-2001 |
Mark Murray <markm@FreeBSD.org> |
Compensate for header dethreading.
|
Revision tags: release/4.3.0_cvs, release/4.3.0 |
|
#
ff1b168b |
| 12-Apr-2001 |
Brian Somers <brian@FreeBSD.org> |
Introduce -osid and -otsid
Submitted by: dd
|
#
f6213d47 |
| 14-Feb-2001 |
Jonathan Lemon <jlemon@FreeBSD.org> |
Do not coredump if no options are supplied. (ps -o,)
Submitted by: rgrimes Obtained from: NetBSD
|