Hi, everyone.
I tried to test the qemu, but I found only qemu-i386 is tested.
But is there any test about other command like qemu-system-arm or
qemu-arm to make sure the function still work after modification?
Best Regards,
robert
> The tool can trace the functions called by qemu while recompling
> qemu with exra options like -finstrument-functions.
> It's just like strace and ltrace, but used to trace userland function.
>
Sorry, a mistake.
The tool can trace the functions directly without any exra options.
Regards,
robe
> Then I just run "info cpus" as following.
> (QEMU) info cpus
>
> But now how can I get into the rountine of "info cpus" ?
> Of course, set trace point to the function can do the work, but if I
> don't know where the routine is, is there any way to step into the
> rountine?
>
Regarding to the que
Hello, everyone.
Now I am trying to read the QEMU source code.
And sometimes it's helpful to use GDB to do the debug for me to
understand the code.
For example, in the qemu environment,
I use gdb to attach to the qemu process.
Then I just run "info cpus" as following.
(QEMU) info cpus
But now ho