Author: gnn Date: Tue Oct 12 22:11:31 2010 New Revision: 213754 URL: http://svn.freebsd.org/changeset/base/213754
Log: MFC 213691: Add code to print the number and type of the CPU that is present in the system as well has how many PMCs there are per CPU. In this code CPU and core are equivalent. Modified: stable/7/usr.sbin/pmccontrol/pmccontrol.c Directory Properties: stable/7/usr.sbin/pmccontrol/ (props changed) Modified: stable/7/usr.sbin/pmccontrol/pmccontrol.c ============================================================================== --- stable/7/usr.sbin/pmccontrol/pmccontrol.c Tue Oct 12 22:10:07 2010 (r213753) +++ stable/7/usr.sbin/pmccontrol/pmccontrol.c Tue Oct 12 22:11:31 2010 (r213754) @@ -243,6 +243,10 @@ pmcc_do_list_state(void) if (pmc_cpuinfo(&pc) != 0) err(EX_OSERR, "Unable to determine CPU information"); + printf("%d %s CPUs present, with %d PMCs per CPU\n", pc->pm_ncpu, + pmc_name_of_cputype(pc->pm_cputype), + pc->pm_npmc); + dummy = sizeof(logical_cpus_mask); if (sysctlbyname("machdep.logical_cpus_mask", &logical_cpus_mask, &dummy, NULL, 0) < 0) _______________________________________________ svn-src-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-all To unsubscribe, send any mail to "svn-src-all-unsubscr...@freebsd.org"