linux-c-programming.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* processor       : 0
@ 2005-03-09 18:37 Ankit Jain
  2005-03-09 18:55 ` Benjamin Sobotta
  2005-03-09 19:05 ` Eric Bambach
  0 siblings, 2 replies; 3+ messages in thread
From: Ankit Jain @ 2005-03-09 18:37 UTC (permalink / raw)
  To: linux prg


[root@ravi sridhar]# more /proc/cpuinfo

if somebody can tell me whats this processor 0
indicates. my system is having intel processor PIV

processor       : 0
vendor_id       : GenuineIntel
cpu family      : 15
model             : 2
model name    : Intel(R) Pentium(R) 4 CPU 2.40GHz
stepping          : 7
cpu MHz         : 2400.114
cache size        : 512 KB
fdiv_bug          : no
hlt_bug            : no
f00f_bug          : no
coma_bug        : no
fpu             	    : yes
fpu_exception  : yes
cpuid level       : 2
wp                    : yes
flags                 : fpu vme de pse tsc msr pae mce
cx8 apic sep mtrr pge mca 
     cmov pat pse36 clflush dts acpi mmx fxsr sse sse2
ss ht tm
bogomips        : 4784.12

thanks


	
		
__________________________________ 
Celebrate Yahoo!'s 10th Birthday! 
Yahoo! Netrospective: 100 Moments of the Web 
http://birthday.yahoo.com/netrospective/

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: processor       : 0
  2005-03-09 18:37 processor : 0 Ankit Jain
@ 2005-03-09 18:55 ` Benjamin Sobotta
  2005-03-09 19:05 ` Eric Bambach
  1 sibling, 0 replies; 3+ messages in thread
From: Benjamin Sobotta @ 2005-03-09 18:55 UTC (permalink / raw)
  To: Ankit Jain; +Cc: linux prg

On Wednesday 09 March 2005 19:37, Ankit Jain wrote:
> [root@ravi sridhar]# more /proc/cpuinfo
>
> if somebody can tell me whats this processor 0
> indicates. my system is having intel processor PIV
>
> processor       : 0
> vendor_id       : GenuineIntel
> cpu family      : 15
> model             : 2
> model name    : Intel(R) Pentium(R) 4 CPU 2.40GHz
> stepping          : 7
> cpu MHz         : 2400.114
> cache size        : 512 KB
> fdiv_bug          : no
> hlt_bug            : no
> f00f_bug          : no
> coma_bug        : no
> fpu                  : yes
> fpu_exception  : yes
> cpuid level       : 2
> wp                    : yes
> flags                 : fpu vme de pse tsc msr pae mce
> cx8 apic sep mtrr pge mca
>      cmov pat pse36 clflush dts acpi mmx fxsr sse sse2
> ss ht tm
> bogomips        : 4784.12
>
> thanks
>
>
>
>
> __________________________________
> Celebrate Yahoo!'s 10th Birthday!
> Yahoo! Netrospective: 100 Moments of the Web
> http://birthday.yahoo.com/netrospective/
> -
> To unsubscribe from this list: send the line "unsubscribe
> linux-c-programming" in the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

That indicates that it is processor _number_ zero in your system.

Cheers,

Ben

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: processor       : 0
  2005-03-09 18:37 processor : 0 Ankit Jain
  2005-03-09 18:55 ` Benjamin Sobotta
@ 2005-03-09 19:05 ` Eric Bambach
  1 sibling, 0 replies; 3+ messages in thread
From: Eric Bambach @ 2005-03-09 19:05 UTC (permalink / raw)
  To: Ankit Jain; +Cc: linux prg

On Wednesday 09 March 2005 12:37 pm, Ankit Jain wrote:
> [root@ravi sridhar]# more /proc/cpuinfo
>
> if somebody can tell me whats this processor 0
> indicates. my system is having intel processor PIV

Hmmm what are you asking? Is this a question for c-programming? Try 
linux-newbie for any follow-up questions.
> processor       : 0
This tells you this information is for your first and only processor (because 
there are no more listings)
> vendor_id       : GenuineIntel
You have an Intel
> cpu family      : 15
Family model #
> model             : 2
Model #
> model name    : Intel(R) Pentium(R) 4 CPU 2.40GHz
In Laymen terms, what is the Processor name
> stepping          : 7
Not sure, but if you have a multiprocessor machine you need to match this 
exactly for both processors.
> cpu MHz         : 2400.114
Speed in Megahertz
> cache size        : 512 KB
Cache Size. More is better ;)
> fdiv_bug          : no
> hlt_bug            : no
> f00f_bug          : no
> coma_bug        : no
Does it suffer from various bugs that previous processors have? No, your 
processor is all good.
> fpu                  : yes
It has a floating point unit
> fpu_exception  : yes
It supports floating point exceptions
> cpuid level       : 2
> wp                    : yes
Not sure, the wp is something a hardware guru can answer.
> flags                 : fpu vme de pse tsc msr pae mce
> cx8 apic sep mtrr pge mca
>      cmov pat pse36 clflush dts acpi mmx fxsr sse sse2
> ss ht tm
These are all the "extra" instructions and features it supports. Interesting 
ones are:
sse/sse2 multimedia instructions
ht hyperthreading
acpi I forget the acronym, but this is for advanced configuration and power 
saving features
pae Page address extentions, it lets your support 4GB of memory instead of 
16M.
> bogomips        : 4784.12
An irellevant calculation Linux uses to program its idle loop. Can be a VERY 
GENERIC indicator of processor speed but should never be relied up as any 
sort of quantatative benchmark.
> thanks

So what was it you wanted info about? Could you be more specific? All of this 
info is fairly self-explanatory. Did you need to find out if your processor 
supports a specific feature?
>
> __________________________________
> Celebrate Yahoo!'s 10th Birthday!
> Yahoo! Netrospective: 100 Moments of the Web
> http://birthday.yahoo.com/netrospective/
> -
> To unsubscribe from this list: send the line "unsubscribe
> linux-c-programming" in the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

-- 
----------------------------------------
--EB

> All is fine except that I can reliably "oops" it simply by trying to read
> from /proc/apm (e.g. cat /proc/apm).
> oops output and ksymoops-2.3.4 output is attached.
> Is there anything else I can contribute?

The latitude and longtitude of the bios writers current position, and
a ballistic missile.

                --Alan Cox LKML-December 08,2000 

----------------------------------------
-
To unsubscribe from this list: send the line "unsubscribe linux-c-programming" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2005-03-09 19:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-09 18:37 processor : 0 Ankit Jain
2005-03-09 18:55 ` Benjamin Sobotta
2005-03-09 19:05 ` Eric Bambach

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).