Changeset 2be27868 in mainline for generic/src/synch/spinlock.c


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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.