Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 115 → Rev 116

/SPARTAN/trunk/arch/ia32/include/atomic.h
47,7 → 47,7
#endif /* __SMP__ */
}
 
static inline int test_and_set(int *val) {
static inline int test_and_set(volatile int *val) {
int v;
__asm__ volatile (
61,6 → 61,6
}
 
 
extern void spinlock_arch(int *val);
extern void spinlock_arch(volatile int *val);
 
#endif