Re: [PATCH v1 6/9] gdbstub/linux-user: support debugging over a unix socket

2020-05-01 Thread Richard Henderson
On 4/30/20 12:01 PM, Alex Bennée wrote: > @@ -814,7 +814,7 @@ int main(int argc, char **argv) > exit(1); > } > } else if (!strcmp(r, "g")) { > -gdbstub_port = atoi(argv[optind++]); > +gdbstub = g_strdup(argv[optind++]); You've got one

[PATCH v1 6/9] gdbstub/linux-user: support debugging over a unix socket

2020-04-30 Thread Alex Bennée
While debugging over TCP is fairly straightforward now we have test cases that want to orchestrate via make and currently a parallel build fails as two processes can't use the same listening port. While system emulation offers a wide cornucopia of connection methods thanks to the chardev abstractio