[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 01/10] gdbstub: use preferred boolean option syntax
From: |
Daniel P . Berrangé |
Subject: |
[PATCH 01/10] gdbstub: use preferred boolean option syntax |
Date: |
Tue, 16 Feb 2021 19:10:18 +0000 |
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
---
gdbstub.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gdbstub.c b/gdbstub.c
index 759bb00bcf..3ee40479b6 100644
--- a/gdbstub.c
+++ b/gdbstub.c
@@ -3505,7 +3505,7 @@ int gdbserver_start(const char *device)
if (strstart(device, "tcp:", NULL)) {
/* enforce required TCP attributes */
snprintf(gdbstub_device_name, sizeof(gdbstub_device_name),
- "%s,nowait,nodelay,server", device);
+ "%s,wait=off,delay=off,server=on", device);
device = gdbstub_device_name;
}
#ifndef _WIN32
--
2.29.2
- [PATCH 00/10] qemu-options: always use key=on|off syntax for bool option docs, Daniel P . Berrangé, 2021/02/16
- [PATCH 01/10] gdbstub: use preferred boolean option syntax,
Daniel P . Berrangé <=
- [PATCH 02/10] qemu-options: update to show preferred boolean syntax for -chardev, Daniel P . Berrangé, 2021/02/16
- [PATCH 03/10] qemu-options: update to show preferred boolean syntax for -spice, Daniel P . Berrangé, 2021/02/16
- [PATCH 05/10] qemu-options: update to show preferred boolean syntax for -incoming, Daniel P . Berrangé, 2021/02/16
- [PATCH 04/10] qemu-options: update to show preferred boolean syntax for -netdev, Daniel P . Berrangé, 2021/02/16
- [PATCH 08/10] docs: update to show preferred boolean syntax for -vnc, Daniel P . Berrangé, 2021/02/16
- [PATCH 06/10] qemu-options: update to show preferred boolean syntax for -vnc, Daniel P . Berrangé, 2021/02/16
- [PATCH 07/10] docs: update to show preferred boolean syntax for -chardev, Daniel P . Berrangé, 2021/02/16