Beispiel #1
0
static void
mono_counters_dump_section (int section, FILE *outfile)
{
	MonoCounter *counter = counters;
	while (counter) {
		if ((counter->type & section) && (mono_counter_get_variance (counter) & section))
			dump_counter (counter, outfile);
		counter = counter->next;
	}
}
Beispiel #2
0
static void
mono_counters_dump_section (int section, FILE *outfile)
{
	MonoCounter *counter = counters;
	while (counter) {
		if (counter->type & section && mono_counter_get_variance (counter) == MONO_COUNTER_MONOTONIC)
			dump_counter (counter, outfile);
		counter = counter->next;
	}
}