History log of /freebsd/bin/ps/print.c (Results 201 – 225 of 279)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
Revision tags: release/4.8.0_cvs, release/4.8.0
# eaed5652 05-Feb-2003 Philippe Charnier <charnier@FreeBSD.org>

Display elapsed time (-o etime) using [[dd-]hh:]mm:ss, which according to
Solaris man page is the POSIX way.

Reviewed by: jmallett


# 78b1878a 19-Jan-2003 Juli Mallett <jmallett@FreeBSD.org>

Per-variable\ entry headers, to allow the 'ps -otime -otime=FOO' or similar
case to do the right thing and affect exactly one column. This is consistent
with GNU ps(1) in BSD mode, and POLA.


# 775bba9f 18-Jan-2003 Juli Mallett <jmallett@FreeBSD.org>

Refer to the process label as proclabel, as there is a function called label,
and that's what these locals were called before.


Revision tags: release/5.0.0_cvs, release/5.0.0
# 01e5f166 31-Oct-2002 Tim J. Robbins <tjr@FreeBSD.org>

Do not print a header line if it would be empty; required by 1003.1-2001.


# 2af538eb 24-Oct-2002 Robert Watson <rwatson@FreeBSD.org>

Use the MAC interface to list process MAC labels rather than using
the LOMAC-specific interface (which is being deprecated). The
revised LOMAC using the MAC framework will export levels listable
usi

Use the MAC interface to list process MAC labels rather than using
the LOMAC-specific interface (which is being deprecated). The
revised LOMAC using the MAC framework will export levels listable
using this mechanism.

Approved by: re
Obtained from: TrustedBSD Project
Sponsored by: DARPA, Network Associates Laboratories

show more ...


Revision tags: release/4.7.0_cvs
# 0d632649 02-Oct-2002 John Baldwin <jhb@FreeBSD.org>

Catch up to SMTX -> SLOCK changes.


# 362d62ba 17-Sep-2002 Juli Mallett <jmallett@FreeBSD.org>

Rename new PLONG type to PGTOK as the conversion is more important than the
size (which is mostly undefined anyway).

Submitted by: bde


# 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 ...


# 6327ab9c 13-Sep-2002 Peter Wemm <peter@FreeBSD.org>

Do not risk using the kernel pgtok() which assumes the page size is
constant.


Revision tags: release/4.6.2_cvs, release/4.6.2, release/4.6.1
# c1f903a0 11-Jul-2002 Bruce Evans <bde@FreeBSD.org>

Fixed a printf format error that was fatal on alphas. Adding WFORMAT=0
to the Makefile didn't affect this bug because WFORMAT only controls
higher- level format checking (not the -Wformat that is im

Fixed a printf format error that was fatal on alphas. Adding WFORMAT=0
to the Makefile didn't affect this bug because WFORMAT only controls
higher- level format checking (not the -Wformat that is implicit in
-Wall).

Fixed a nearby printf format error that was benign and 3 nearby style bugs.

show more ...


# ffe25988 07-Jul-2002 Juli Mallett <jmallett@FreeBSD.org>

Make printval() take a 'void *' thus negating any assumptions the compiler
may try to make about the alignment of the dereferenced datum.


Revision tags: release/4.6.0_cvs
# 2749b141 30-Jun-2002 David E. O'Brien <obrien@FreeBSD.org>

Consistently use FBSDID


# c3f1b5a9 07-Jun-2002 Juli Mallett <jmallett@FreeBSD.org>

Cast to long to match format. Hidden by revision 1.18 of Makefile.


# ba2cd770 06-Jun-2002 Juli Mallett <jmallett@FreeBSD.org>

Use a global `now' variable for the current time, and initialise it at
startup, right after calling setlocale(3).


# 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.


# 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 ...


# fdbec398 05-Jun-2002 Juli Mallett <jmallett@FreeBSD.org>

Use a const char * where it is meant to be used. There's no reason to try
to discard the const qualifier here.


# a3dbc1d8 23-Feb-2002 Mark Murray <markm@FreeBSD.org>

ANSIfy.


# 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>


# 576541a9 19-Feb-2002 Warner Losh <imp@FreeBSD.org>

Fixed divots that I created when I moved prototypes of group_from_gid
and user_from_uid to grp.h and pwd.h. Update the man pages.

Submitted by: David Malone
Pointy hat to: imp


# ebc1fff9 16-Feb-2002 Matthew Dillon <dillon@FreeBSD.org>

When blocked on a mutex, display the mutex name via the wchan string field
so we can at least tell the difference between being blocked in Giant
and being blocked in some other mutex.


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).


12345678910>>...12