Changeset e3f41b6 in mainline for arch/ia32/src/atomic.S
- Timestamp:
- 2005-06-06T20:01:57Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- b0bf501
- Parents:
- d47f0e1
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/src/atomic.S
rd47f0e1 re3f41b6 33 33 pushl %ebx 34 34 movl 8(%esp),%ebx 35 #ifdef __SMP__ 35 36 lock incl (%ebx) 37 #else 38 incl (%ebx) 39 #endif 36 40 popl %ebx 37 41 ret … … 41 45 pushl %ebx 42 46 movl 8(%esp),%ebx 47 #ifdef __SMP__ 43 48 lock decl (%ebx) 49 #else 50 decl (%ebx) 51 #endif 44 52 popl %ebx 45 53 ret
Note:
See TracChangeset
for help on using the changeset viewer.