]> git.proxmox.com Git - qemu.git/commitdiff
char: rename CHR_EVENT_RESET to CHR_EVENT_OPENED
authorAmit Shah <amit.shah@redhat.com>
Wed, 7 Oct 2009 13:01:16 +0000 (18:31 +0530)
committerAnthony Liguori <aliguori@us.ibm.com>
Wed, 21 Oct 2009 18:35:37 +0000 (13:35 -0500)
The char event RESET is emitted when a char device is opened.
Give it a better name.

Patchworks-ID: 35287
Signed-off-by: Amit Shah <amit.shah@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
gdbstub.c
hw/baum.c
hw/usb-serial.c
monitor.c
qemu-char.c
qemu-char.h

index 315f606ef272606b7c703a44b05be49c4380f87e..055093f89ba39a04a0841eb3b932b84c659d265b 100644 (file)
--- a/gdbstub.c
+++ b/gdbstub.c
@@ -2447,7 +2447,7 @@ static void gdb_chr_receive(void *opaque, const uint8_t *buf, int size)
 static void gdb_chr_event(void *opaque, int event)
 {
     switch (event) {
-    case CHR_EVENT_RESET:
+    case CHR_EVENT_OPENED:
         vm_stop(EXCP_INTERRUPT);
         gdb_has_xml = 0;
         break;
index 665deab8e6c80f2124141cc465e8d6d2e7a3362e..c66e737ccdb1629a93855e997e794025bfa85248 100644 (file)
--- a/hw/baum.c
+++ b/hw/baum.c
@@ -475,7 +475,7 @@ static void baum_send_event(CharDriverState *chr, int event)
     switch (event) {
     case CHR_EVENT_BREAK:
         break;
-    case CHR_EVENT_RESET:
+    case CHR_EVENT_OPENED:
         /* Reset state */
         baum->in_buf_used = 0;
         break;
index e2379c4d5ec2483bbad055cd1d1c17f3054f59ce..d02f6b2867c4d3132cce95402cf3292e27282a3a 100644 (file)
@@ -516,7 +516,7 @@ static void usb_serial_event(void *opaque, int event)
             break;
         case CHR_EVENT_FOCUS:
             break;
-        case CHR_EVENT_RESET:
+        case CHR_EVENT_OPENED:
             usb_serial_reset(s);
             /* TODO: Reset USB port */
             break;
index 3424e6010cd1f38988f9fc4dfeb0fd928b86250f..2566f4a1b46e61895ba91c23fce55f42882a9477 100644 (file)
--- a/monitor.c
+++ b/monitor.c
@@ -3470,7 +3470,7 @@ static void monitor_event(void *opaque, int event)
         mon->mux_out = 1;
         break;
 
-    case CHR_EVENT_RESET:
+    case CHR_EVENT_OPENED:
         monitor_printf(mon, "QEMU %s monitor - type 'help' for more "
                        "information\n", QEMU_VERSION);
         if (!mon->mux_out) {
index 8f7f81ca54347ff2b7cd600436384dae1300275d..47576899935e76f0f2643617f32b138d8a97fdad 100644 (file)
@@ -119,7 +119,7 @@ static void qemu_chr_event(CharDriverState *s, int event)
 static void qemu_chr_reset_bh(void *opaque)
 {
     CharDriverState *s = opaque;
-    qemu_chr_event(s, CHR_EVENT_RESET);
+    qemu_chr_event(s, CHR_EVENT_OPENED);
     qemu_bh_delete(s->bh);
     s->bh = NULL;
 }
index c0654bca259546bac4b1499663b822eaa1f495b3..05fe15d8cd8a0a98decddb1ea0bbdd3bf039b6ae 100644 (file)
@@ -10,7 +10,7 @@
 
 #define CHR_EVENT_BREAK   0 /* serial break char */
 #define CHR_EVENT_FOCUS   1 /* focus to this terminal (modal input needed) */
-#define CHR_EVENT_RESET   2 /* new connection established */
+#define CHR_EVENT_OPENED  2 /* new connection established */
 #define CHR_EVENT_MUX_IN  3 /* mux-focus was set to this terminal */
 #define CHR_EVENT_MUX_OUT 4 /* mux-focus will move on */
 #define CHR_EVENT_CLOSED  5 /* connection closed */