My question is how to transfer signal between the guest os run on the host os with QEMU and its host os, I write some datas to the shared memory that created on the host os by an thread of the guest OS, and want the other thread which on the host os know it and to read the datas, but no use poll in the thread of the host os, I want to know is there has any ways to achive this? Thanks for any suggestion from you!

link|improve this question
I would believe that QEMU can only emulate an interrupt (since it is emulating a machine, not an OS). Why can't you use SIGIO in the application under the Linux in the QEMU ? I don't understand all of your question. – Basile Starynkevitch Dec 28 '11 at 13:05
feedback

1 Answer

Qemu gives the guest an abstraction of the complete system. And you cannot use shared memory IPC across machines. I would suggest using special instruction which can be used the qemu disassembly function to know that an IPC is required.

Steps :

  1. use a special marker instruction in the guest app. Lets say "int $100".
  2. Create a helper function in qemu that will be called when this instruction occurs.
  3. now, when you receive a callback function in qemu, check for a known virtual address that stores the pointer to your data and the length of the data.

done ..

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.