Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 4668 → Rev 4678

/branches/dd/kernel/arch/mips32/include/atomic.h
88,6 → 88,13
return v;
}
 
static inline void atomic_lock_arch(atomic_t *val) {
do {
while (val->count)
;
} while (test_and_set(val));
}
 
#endif
 
/** @}
/branches/dd/kernel/arch/mips32/src/mips32.c
141,7 → 141,7
.x = 640,
.y = 480,
.scan = 1920,
.visual = VISUAL_BGR_8_8_8,
.visual = VISUAL_RGB_8_8_8,
};
fb_init(&gxemul_prop);
#else