Current Path : /usr/src/tools/tools/ncpus/ |
FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64 |
Current File : //usr/src/tools/tools/ncpus/ncpus.c |
/* $FreeBSD: release/9.1.0/tools/tools/ncpus/ncpus.c 156362 2006-03-06 21:51:27Z sam $ */ #include <stdio.h> extern int acpi_detect(void); extern int biosmptable_detect(void); int main(void) { printf("acpi: %d\n", acpi_detect()); #if defined(__amd64__) || defined(__i386__) printf("mptable: %d\n", biosmptable_detect()); #endif return 0; }