maybe svn glitch, double checking

This commit is contained in:
inxi-svn 2009-08-07 00:05:57 +00:00
parent d57cbf4b1e
commit e41eeea227

9
inxi
View file

@ -1,13 +1,8 @@
#!/bin/bash #!/bin/bash
######################################################################## ########################################################################
#### Script Name: inxi #### Script Name: inxi
<<<<<<< .mine
#### version: 1.1.12 #### version: 1.1.12
#### Date: August 6 2009 #### Date: August 6 2009
=======
#### version: 1.1.12
#### Date: August 4 2009
>>>>>>> .r685
######################################################################## ########################################################################
#### SPECIAL THANKS #### SPECIAL THANKS
######################################################################## ########################################################################
@ -2004,11 +1999,11 @@ get_cpu_ht_multicore_smp_data()
# looking at logical processor counts over 1, which means either HT, SMP or MCP # looking at logical processor counts over 1, which means either HT, SMP or MCP
# http://en.wikipedia.org/wiki/Symmetric_multiprocessing # http://en.wikipedia.org/wiki/Symmetric_multiprocessing
if ( processor_logical_count > 1 ) { if ( processor_logical_count > 1 && core_count > 1 ) {
if ( processor_logical_count > core_count && physical_cpu_count > 1 ) { if ( processor_logical_count > core_count && physical_cpu_count > 1 ) {
type = "SMP-HT" # could be Xeon/P4 HT dual cpu type = "SMP-HT" # could be Xeon/P4 HT dual cpu
} }
else if ( processor_logical_count > core_count && core_count > 1) { else if ( processor_logical_count > core_count ) {
type = "HT" # this is more than likely a P4 w/HT or an Atom 270 type = "HT" # this is more than likely a P4 w/HT or an Atom 270
} }
else { else {