From owner-cvs-all Wed Oct 16 6:50:14 2002 Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FE8437B401; Wed, 16 Oct 2002 06:50:13 -0700 (PDT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36C8A43EC2; Wed, 16 Oct 2002 06:50:13 -0700 (PDT) (envelope-from charnier@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.6/8.12.6) with ESMTP id g9GDoAmV054220; Wed, 16 Oct 2002 06:50:10 -0700 (PDT) (envelope-from charnier@repoman.freebsd.org) Received: (from charnier@localhost) by repoman.freebsd.org (8.12.6/8.12.6/Submit) id g9GDoAK8054219; Wed, 16 Oct 2002 06:50:10 -0700 (PDT) Message-Id: <200210161350.g9GDoAK8054219@repoman.freebsd.org> From: Philippe Charnier Date: Wed, 16 Oct 2002 06:50:10 -0700 (PDT) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/usr.bin/gprof aout.c arcs.c dfn.c elf.c gprof.1 gprof.c gprof.h hertz.c hp300.c i386.c lookup.c mips.c pathnames.h printgprof.c printlist.c sparc.c sparc64.c tahoe.c vax.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG charnier 2002/10/16 06:50:10 PDT Modified files: usr.bin/gprof aout.c arcs.c dfn.c elf.c gprof.1 gprof.c gprof.h hertz.c hp300.c i386.c lookup.c mips.c pathnames.h printgprof.c printlist.c sparc.c sparc64.c tahoe.c vax.c Log: Remove done() which was just exit() so use of warn()/err() can be made. Abort on allocation failure instead of displaying a warning and deferencing NULL pointer after. Spelling. Add prototypes. Add list of option in synopsis section of man page, -d is not referenced because available as a compile option. It should be made a runtime option btw. Revision Changes Path 1.5 +16 -26 src/usr.bin/gprof/aout.c 1.11 +31 -20 src/usr.bin/gprof/arcs.c 1.5 +15 -14 src/usr.bin/gprof/dfn.c 1.5 +3 -3 src/usr.bin/gprof/elf.c 1.22 +24 -18 src/usr.bin/gprof/gprof.1 1.20 +32 -49 src/usr.bin/gprof/gprof.c 1.17 +41 -45 src/usr.bin/gprof/gprof.h 1.2 +5 -0 src/usr.bin/gprof/hertz.c 1.2 +3 -0 src/usr.bin/gprof/hp300.c 1.2 +4 -0 src/usr.bin/gprof/i386.c 1.5 +3 -4 src/usr.bin/gprof/lookup.c 1.2 +5 -0 src/usr.bin/gprof/mips.c 1.2 +1 -0 src/usr.bin/gprof/pathnames.h 1.11 +27 -11 src/usr.bin/gprof/printgprof.c 1.5 +7 -7 src/usr.bin/gprof/printlist.c 1.2 +5 -0 src/usr.bin/gprof/sparc.c 1.2 +2 -1 src/usr.bin/gprof/sparc64.c 1.3 +5 -0 src/usr.bin/gprof/tahoe.c 1.3 +5 -0 src/usr.bin/gprof/vax.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message