From 261e0ede724325aa69ff91624c521059d1250806 Mon Sep 17 00:00:00 2001 From: "jinhyung.jo" Date: Wed, 11 Sep 2013 14:43:37 +0900 Subject: [PATCH] YaGL : modified the variable tpye Modified the variable type for CPUState used by yagl_thread, etc. (CPUArchState * -> CPUState *) It has satisfied for the changes of passing argument to QEMU 1.6, i.e., compilation warnings disappear. Change-Id: I9f6dbe45d5d2c09ea126509803acdbba2da145c0 Signed-off-by: Jinhyung Jo --- hw/yagl_thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/yagl_thread.h b/hw/yagl_thread.h index 7938c8b..0879956 100644 --- a/hw/yagl_thread.h +++ b/hw/yagl_thread.h @@ -62,7 +62,7 @@ struct yagl_thread_state * the time of call. This is the time when host thread can * read/write target memory. */ - CPUArchState * volatile current_env; + CPUState * volatile current_env; }; YAGL_DECLARE_TLS(struct yagl_thread_state*, cur_ts); -- 2.7.4