Searched hist:c89f2750e9845aa115ca30c062edd569da619cad (Results 1 – 4 of 4) sorted by relevance
/linux/drivers/platform/goldfish/ |
H A D | Makefile | diff c89f2750e9845aa115ca30c062edd569da619cad Tue Jan 22 00:48:21 CET 2013 David 'Digit' Turner <digit@android.com> goldfish: add QEMU pipe driver
A QEMU pipe is a very fast communication channel between the guest system and the emulator. Usage from the guest is simply something like;
// connect to special device fd = open("/dev/qemu_pipe", O_RDWR);
// tell which service we want to talk to (must be zero-terminated) write(fd, "pipeName", strlen("pipeName")+1);
// do read()/write() through fd now ...
// close channel close(fd);
Signed-off-by: David 'Digit' Turner <digit@android.com> [Added support for parameter buffers for speed] igned-off-by: Xin, Xiaohui <xiaohui.xin@intel.com> Signed-off-by: Jiang, Yunhong <yunhong.jiang@intel.com> Signed-off-by: Nakajima, Jun <jun.nakajima@intel.com> [Ported to 3.6] Signed-off-by: Tom Keel <thomas.keel@intel.com> [Ported to 3.7, moved to platform/goldfish] Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|
H A D | Kconfig | c89f2750e9845aa115ca30c062edd569da619cad Tue Jan 22 00:48:21 CET 2013 David 'Digit' Turner <digit@android.com> goldfish: add QEMU pipe driver
A QEMU pipe is a very fast communication channel between the guest system and the emulator. Usage from the guest is simply something like;
// connect to special device fd = open("/dev/qemu_pipe", O_RDWR);
// tell which service we want to talk to (must be zero-terminated) write(fd, "pipeName", strlen("pipeName")+1);
// do read()/write() through fd now ...
// close channel close(fd);
Signed-off-by: David 'Digit' Turner <digit@android.com> [Added support for parameter buffers for speed] igned-off-by: Xin, Xiaohui <xiaohui.xin@intel.com> Signed-off-by: Jiang, Yunhong <yunhong.jiang@intel.com> Signed-off-by: Nakajima, Jun <jun.nakajima@intel.com> [Ported to 3.6] Signed-off-by: Tom Keel <thomas.keel@intel.com> [Ported to 3.7, moved to platform/goldfish] Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|
H A D | goldfish_pipe.c | c89f2750e9845aa115ca30c062edd569da619cad Tue Jan 22 00:48:21 CET 2013 David 'Digit' Turner <digit@android.com> goldfish: add QEMU pipe driver
A QEMU pipe is a very fast communication channel between the guest system and the emulator. Usage from the guest is simply something like;
// connect to special device fd = open("/dev/qemu_pipe", O_RDWR);
// tell which service we want to talk to (must be zero-terminated) write(fd, "pipeName", strlen("pipeName")+1);
// do read()/write() through fd now ...
// close channel close(fd);
Signed-off-by: David 'Digit' Turner <digit@android.com> [Added support for parameter buffers for speed] igned-off-by: Xin, Xiaohui <xiaohui.xin@intel.com> Signed-off-by: Jiang, Yunhong <yunhong.jiang@intel.com> Signed-off-by: Nakajima, Jun <jun.nakajima@intel.com> [Ported to 3.6] Signed-off-by: Tom Keel <thomas.keel@intel.com> [Ported to 3.7, moved to platform/goldfish] Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|
/linux/drivers/platform/ |
H A D | Kconfig | diff c89f2750e9845aa115ca30c062edd569da619cad Tue Jan 22 00:48:21 CET 2013 David 'Digit' Turner <digit@android.com> goldfish: add QEMU pipe driver
A QEMU pipe is a very fast communication channel between the guest system and the emulator. Usage from the guest is simply something like;
// connect to special device fd = open("/dev/qemu_pipe", O_RDWR);
// tell which service we want to talk to (must be zero-terminated) write(fd, "pipeName", strlen("pipeName")+1);
// do read()/write() through fd now ...
// close channel close(fd);
Signed-off-by: David 'Digit' Turner <digit@android.com> [Added support for parameter buffers for speed] igned-off-by: Xin, Xiaohui <xiaohui.xin@intel.com> Signed-off-by: Jiang, Yunhong <yunhong.jiang@intel.com> Signed-off-by: Nakajima, Jun <jun.nakajima@intel.com> [Ported to 3.6] Signed-off-by: Tom Keel <thomas.keel@intel.com> [Ported to 3.7, moved to platform/goldfish] Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
|