Changeset 2be27868 in mainline


Ignore:
Timestamp:
2006-05-14T09:28:32Z (19 years ago)
Author:
Jakub Jermar <jakub@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
e9a9469
Parents:
a4fc367
Message:

Increase "timeout" for debugging spinlock so that false positive
deadlock reports are suppressed on real hardware.

Also add one HT configuration to hardware compatibility list.

Files:
3 edited

Legend:

Unmodified
Added
Removed
  • doc/arch/amd64

    ra4fc367 r2be27868  
    2020        o Simics 2.2.19
    2121                o 2x-15x AMD hammer CPU
    22         o QEMU 0.8.0
     22        o QEMU 0.8.0 - QEMU 0.8.1
    2323                o 2x-15x CPU
    2424        o HP ProLiant ML350 (HyperThreading)
     
    2727        o Bochs 2.2.6
    2828        o Simics 2.2.19
    29         o QEMU 0.8.0
     29        o QEMU 0.8.1
    3030
    3131TOOLCHAIN REQUIREMENTS
  • doc/arch/ia32

    ra4fc367 r2be27868  
    1818        o VMware Workstation 5.5
    1919                o 2x CPU
    20         o QEMU 0.8.0
     20        o QEMU 0.8.0 - QEMU 0.8.1
    2121                o 2x-15x CPU
    2222        o ASUS P/I-P65UP5 + ASUS C-P55T2D REV. 1.41
     
    2626        o MSI K7D Master-L
    2727                o 2x 2100MHz Athlon MP CPU
     28        o ECS 865PE-A REV : 2.0
     29                o 1x 2800MHz Pentium 4 Prescott (HT) CPU
    2830
    2931EMULATORS AND VIRTUALIZERS
     
    3133        o VMware Workstation 4, VMware Workstation 5, VMware Workstation 5.5
    3234        o Simics 2.2.19
    33         o QEMU 0.8.0
     35        o QEMU 0.8.0 - QEMU 0.8.1
    3436
    3537TOOLCHAIN REQUIREMENTS
  • generic/src/synch/spinlock.c

    ra4fc367 r2be27868  
    102102                        continue;
    103103#endif
    104                 if (i++ > 300000) {
     104                if (i++ > 10000000) {
    105105                        printf("cpu%d: looping on spinlock %.*p:%s, caller=%.*p",
    106106                               CPU->id, sizeof(__address) * 2, sl, sl->name, sizeof(__address) * 2, CALLER);
Note: See TracChangeset for help on using the changeset viewer.