aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2007-02-05 19:50:01 +0000
committerbellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162>2007-02-05 19:50:01 +0000
commit2a2528266e6834aa1dc8280ca91e334f52267365 (patch)
tree0fc2bc6d7013f4429e8da0bda240b748b45fa271
parent263466f53aa70597b48b415a3a49d6f2e4511f77 (diff)
This patch fixes typos in the commpage definition (Pierre d'Herbemont).
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2389 c046a42c-6fe2-441c-8c8c-71466251a162
-rw-r--r--darwin-user/commpage.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/darwin-user/commpage.c b/darwin-user/commpage.c
index 12ee1da029..78a14130a1 100644
--- a/darwin-user/commpage.c
+++ b/darwin-user/commpage.c
@@ -114,10 +114,10 @@ static struct commpage_entry commpage_entries[] =
COMMPAGE_ENTRY(spinlock_lock, 1, 0x260, OSSpinLockLock, CALL_DIRECT),
COMMPAGE_ENTRY(spinlock_unlock, 1, 0x2a0, OSSpinLockUnlock, CALL_DIRECT),
COMMPAGE_ENTRY(pthread_getspecific, 0, 0x2c0, unimpl_commpage, CALL_INDIRECT),
- COMMPAGE_ENTRY(gettimeofday, 1, 0x2c0, do_cgettimeofday, CALL_INDIRECT),
- COMMPAGE_ENTRY(sys_dcache_flush, 0, 0x2c0, unimpl_commpage, CALL_INDIRECT),
- COMMPAGE_ENTRY(sys_icache_invalidate, 0, 0x2c0, unimpl_commpage, CALL_INDIRECT),
- COMMPAGE_ENTRY(pthread_self, 0, 0x2c0, unimpl_commpage, CALL_INDIRECT),
+ COMMPAGE_ENTRY(gettimeofday, 1, 0x2e0, do_cgettimeofday, CALL_INDIRECT),
+ COMMPAGE_ENTRY(sys_dcache_flush, 0, 0x4e0, unimpl_commpage, CALL_INDIRECT),
+ COMMPAGE_ENTRY(sys_icache_invalidate, 0, 0x520, unimpl_commpage, CALL_INDIRECT),
+ COMMPAGE_ENTRY(pthread_self, 0, 0x580, unimpl_commpage, CALL_INDIRECT),
COMMPAGE_ENTRY(relinquish, 0, 0x5c0, unimpl_commpage, CALL_INDIRECT),
@@ -305,7 +305,7 @@ void do_nanotime(void *cpu_env, int num)
void unimpl_commpage(void *cpu_env, int num)
{
- gemu_log("qemu: commpage function 0x%x not implemented\n", num);
+ qerror("qemu: commpage function 0x%x not implemented\n", num);
}
/********************************************************************