|
|
|
|
|
|
|
|
|
|
xen-changelog
[Xen-changelog] [qemu-xen-unstable] implement qemu_chr_open_pty for stub
commit 4ed8d0687d40c079561c8d6221c9b22bd6e585e5
Author: Ian Jackson <ian.jackson@xxxxxxxxxxxxx>
Date: Thu Jun 18 15:22:16 2009 +0100
implement qemu_chr_open_pty for stubdoms
this is an updated version of the patch "implement qemu_chr_open_pty for
stubdoms": qemu_chr_open_pty is now based on posix_openpt instead of
openpty(void).
Signed-off-by: Stefano Stabellini <stefano.stabellini@xxxxxxxxxxxxx>
[ This depends on the corresponding minios change, which is
19790:01ad2654815a ]
---
qemu-char.c | 20 ++++++++++++++++++++
1 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/qemu-char.c b/qemu-char.c
index 819b881..7a6a33d 100644
--- a/qemu-char.c
+++ b/qemu-char.c
@@ -1120,6 +1120,26 @@ static CharDriverState *qemu_chr_open_tty(const char
*filename)
qemu_chr_reset(chr);
return chr;
}
+#elif CONFIG_STUBDOM
+#include <fcntl.h>
+static CharDriverState *qemu_chr_open_pty(void)
+{
+ CharDriverState *chr;
+ int fd;
+
+ fd = posix_openpt(O_RDWR|O_NOCTTY);
+ if (fd < 0)
+ return NULL;
+
+ chr = qemu_chr_open_fd(fd, fd);
+ if (!chr) {
+ close(fd);
+ return NULL;
+ }
+
+ qemu_chr_reset(chr);
+ return chr;
+}
#else /* ! __linux__ && ! __sun__ */
static CharDriverState *qemu_chr_open_pty(void)
{
--
generated by git-patchbot for /home/xen/git/qemu-xen-unstable.git
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|
<Prev in Thread] |
Current Thread |
[Next in Thread> |
- [Xen-changelog] [qemu-xen-unstable] implement qemu_chr_open_pty for stubdoms,
Ian Jackson <=
|
|
|
|
|