Subject: Re: Parallel Common-Lisp with at least 64 processors?
From: rpw3@rpw3.org (Rob Warnock)
Date: Fri, 16 May 2008 06:46:06 -0500
Newsgroups: comp.lang.lisp
Message-ID: <GtCdnQJvRYdj7rDVnZ2dnUVZ_qPinZ2d@speakeasy.net>
Robert Maas, <usenet2.3.CalRobert@SpamGourmet.Com> wrote:
+---------------
| > From: p...@informatimago.com (Pascal J. Bourguignon)
| > On a linux system you can have a look at /proc/cpuinfo.
| > cat /proc/cpuinfo
| 
| That does't help me on my shell account running FreeBSD Unix.
| % more /proc/cpuinfo
| /proc/cpuinfo: No such file or directory
+---------------

Actually, if your FreeBSD provider has mounted the "linprocfs"
pseudo-device then all you need to do is look in the right place:

    $ uname -rs
    FreeBSD 6.2-RELEASE-p4
    $ df | grep proc
    linprocfs     4      4     0   100%    /usr/compat/linux/proc
    procfs        4      4     0   100%    /proc
    $ cat /proc/cpuinfo
    cat: /proc/cpuinfo: No such file or directory
    $ cat /usr/compat/linux/proc/cpuinfo
    processor	: 0
    vendor_id	: AuthenticAMD
    cpu family	: 15
    model	: 1
    model name	: AMD Athlon(tm) 64 Processor 3500+
    stepping	: 0
    flags	: fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 b19 mmx fxsr xmm b26
    cpu MHz	: 2211.34
    bogomips	: 2211.34
    $


-Rob

-----
Rob Warnock			<rpw3@rpw3.org>
627 26th Avenue			<URL:http://rpw3.org/>
San Mateo, CA 94403		(650)572-2607