diff options
| author | Ilya Leoshkevich <iii@linux.ibm.com> | 2024-03-05 12:09:39 +0000 |
|---|---|---|
| committer | Alex Bennée <alex.bennee@linaro.org> | 2024-03-06 12:35:19 +0000 |
| commit | e4e5cb4a54403558defb4669a8c64cbd67713e1e (patch) | |
| tree | 35ba13c3eec6b95cc5945dd7404dd83caaf3453d /bsd-user/qemu.h | |
| parent | 1ea96f1ded914c64c5a6df78b8d0663daebc828c (diff) | |
| download | focaccia-qemu-e4e5cb4a54403558defb4669a8c64cbd67713e1e.tar.gz focaccia-qemu-e4e5cb4a54403558defb4669a8c64cbd67713e1e.zip | |
{linux,bsd}-user: Introduce get_task_state()
A CPU's TaskState is stored in the CPUState's void *opaque field, accessing which is somewhat awkward due to having to use a cast. Introduce a wrapper and use it everywhere. Suggested-by: Alex Bennée <alex.bennee@linaro.org> Signed-off-by: Ilya Leoshkevich <iii@linux.ibm.com> Reviewed-by: Warner Losh <imp@bsdimp.com> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20240219141628.246823-3-iii@linux.ibm.com> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20240305121005.3528075-4-alex.bennee@linaro.org>
Diffstat (limited to 'bsd-user/qemu.h')
| -rw-r--r-- | bsd-user/qemu.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/bsd-user/qemu.h b/bsd-user/qemu.h index c05c512767..4adb75d19f 100644 --- a/bsd-user/qemu.h +++ b/bsd-user/qemu.h @@ -117,6 +117,11 @@ typedef struct TaskState { struct target_sigaltstack sigaltstack_used; } __attribute__((aligned(16))) TaskState; +static inline TaskState *get_task_state(CPUState *cs) +{ + return cs->opaque; +} + void stop_all_tasks(void); extern const char *interp_prefix; extern const char *qemu_uname_release; |