From owner-cvs-usrbin Wed Oct 16 14:03:09 1996 Return-Path: owner-cvs-usrbin Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA05571 for cvs-usrbin-outgoing; Wed, 16 Oct 1996 14:03:09 -0700 (PDT) Received: (from bde@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id OAA05547; Wed, 16 Oct 1996 14:02:53 -0700 (PDT) Date: Wed, 16 Oct 1996 14:02:53 -0700 (PDT) From: Bruce Evans Message-Id: <199610162102.OAA05547@freefall.freebsd.org> To: CVS-committers, cvs-all, cvs-usrbin Subject: cvs commit: src/usr.bin/gprof gprof.h Sender: owner-cvs-usrbin@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk bde 96/10/16 14:02:51 Modified: usr.bin/gprof gprof.h Log: Use a (signed) int32_t counter instead of an `unsigned int' counter for the GPROF4 case. This allows a simpler method to be used for non-statistical profiling (it allows overhead adjustments to be subtracted from one counter without harm if that counter goes negative; otherwise the adjustment would have to be distributed). 32 bit counters were already too small for GPROF4 with a 200MHz clock. int64_t counters should be used. Revision Changes Path 1.4 +1 -1 src/usr.bin/gprof/gprof.h