diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-05-14 21:51:13 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2003-05-14 21:51:13 +0000 |
commit | eb51d102bbd541963ac5cb98d5a8c7c2fe9453d9 (patch) | |
tree | 5d0787d2eb917d4a2107dc31e300c9b292b18b52 /exec.c | |
parent | 25eb44841e4125da67338320d8af0b4859c672de (diff) |
better locks
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@169 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'exec.c')
-rw-r--r-- | exec.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -42,6 +42,8 @@ TranslationBlock tbs[CODE_GEN_MAX_BLOCKS]; TranslationBlock *tb_hash[CODE_GEN_HASH_SIZE]; int nb_tbs; +/* any access to the tbs or the page table must use this lock */ +spinlock_t tb_lock = SPIN_LOCK_UNLOCKED; uint8_t code_gen_buffer[CODE_GEN_BUFFER_SIZE]; uint8_t *code_gen_ptr; @@ -172,6 +174,7 @@ void page_set_flags(unsigned long start, unsigned long end, int flags) end = TARGET_PAGE_ALIGN(end); if (flags & PAGE_WRITE) flags |= PAGE_WRITE_ORG; + spin_lock(&tb_lock); for(addr = start; addr < end; addr += TARGET_PAGE_SIZE) { p = page_find_alloc(addr >> TARGET_PAGE_BITS); /* if the write protection is set, then we invalidate the code @@ -183,6 +186,7 @@ void page_set_flags(unsigned long start, unsigned long end, int flags) } p->flags = flags; } + spin_unlock(&tb_lock); } void cpu_x86_tblocks_init(void) |