Re: [Qemu-devel] [PATCH v4] qqq: module for synchronizing with a simulation clock

2017-01-02 Thread Paolo Bonzini
On 27/12/2016 21:13, James J. Nutaro wrote: > +(1) Create two pairs of pipes with the Linux pipe function. > +The code segment that does this might look like > + > + int pipefd1[2]; > + int pipefd2[2]; > + pipe(pipefd1); > + pipe(pipefd2); > + > +(2) Fork QEMU with the

Re: [Qemu-devel] [PATCH v4] qqq: module for synchronizing with a simulation clock

2016-12-27 Thread no-reply
Hi, Your series seems to have some coding style problems. See output below for more information: Message-id: 1482869621-24808-1-git-send-email-nutar...@ornl.gov Type: series Subject: [Qemu-devel] [PATCH v4] qqq: module for synchronizing with a simulation clock === TEST SCRIPT BEGIN === #!/bin

[Qemu-devel] [PATCH v4] qqq: module for synchronizing with a simulation clock

2016-12-27 Thread James J. Nutaro
This patch adds an interface for pacing the execution of QEMU to match an external simulation clock. Its aim is to permit QEMU to be used as a module within a larger simulation system. Signed-off-by: James J. Nutaro --- Makefile.objs| 1 + Makefile.target | 3 + cpus.c