Subversion Repositories HelenOS

Compare Revisions

Regard whitespace Rev 4342 → Rev 4343

/branches/dynload/kernel/arch/mips32/src/mm/tlb.c
41,7 → 41,7
#include <panic.h>
#include <arch.h>
#include <symtab.h>
#include <synch/spinlock.h>
#include <synch/mutex.h>
#include <print.h>
#include <debug.h>
#include <align.h>
95,9 → 95,9
 
badvaddr = cp0_badvaddr_read();
 
spinlock_lock(&AS->lock);
mutex_lock(&AS->lock);
asid = AS->asid;
spinlock_unlock(&AS->lock);
mutex_unlock(&AS->lock);
 
page_table_lock(AS, true);