Subject: Re: Profiling Weirdness Solved.
To: None <current-users@sun-lamp.cs.berkeley.edu>
From: T. William Wells <bill@twwells.com>
List: current-users
Date: 09/01/1994 12:41:08
In article <9408310754.AA05029@cs.few.eur.nl>,
Paul Kranenburg  <pk@cs.few.eur.nl> wrote:
: These .long's, someone told me some time ago, may have been in
: use in the days of prof(1).

Mcount was something along the lines of:

mcount(int location)
{
	if (*location == 0 && index < loctabsize) {
		loctab[index++] = location
	}
	++*location;
}

and "location" pointed to that .long.

------------------------------------------------------------------------------