Commit e90096763d74b1126cf502c2d710d64df5ecbb63

Authored by bellard
1 parent 43fb823b

report user mode gdb exit codes (Paul Brook)


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1401 c046a42c-6fe2-441c-8c8c-71466251a162
gdbstub.c
... ... @@ -656,6 +656,22 @@ gdb_handlesig (CPUState *env, int sig)
656 656 }
657 657 return sig;
658 658 }
  659 +
  660 +/* Tell the remote gdb that the process has exited. */
  661 +void gdb_exit(CPUState *env, int code)
  662 +{
  663 + GDBState *s;
  664 + char buf[4];
  665 +
  666 + if (gdbserver_fd < 0)
  667 + return;
  668 +
  669 + s = &gdbserver_state;
  670 +
  671 + snprintf(buf, sizeof(buf), "W%02x", code);
  672 + put_packet(s, buf);
  673 +}
  674 +
659 675 #else
660 676 static int gdb_can_read(void *opaque)
661 677 {
... ...
gdbstub.h
... ... @@ -5,6 +5,7 @@
5 5  
6 6 #ifdef CONFIG_USER_ONLY
7 7 int gdb_handlesig (CPUState *, int);
  8 +void gdb_exit(CPUState *, int);
8 9 #endif
9 10 int gdbserver_start(int);
10 11  
... ...
linux-user/syscall.c
... ... @@ -1603,6 +1603,7 @@ long do_syscall(void *cpu_env, int num, long arg1, long arg2, long arg3,
1603 1603 #ifdef HAVE_GPROF
1604 1604 _mcleanup();
1605 1605 #endif
  1606 + gdb_exit(cpu_env, arg1);
1606 1607 /* XXX: should free thread stack and CPU env */
1607 1608 _exit(arg1);
1608 1609 ret = 0; /* avoid warning */
... ... @@ -2409,6 +2410,7 @@ long do_syscall(void *cpu_env, int num, long arg1, long arg2, long arg3,
2409 2410 #ifdef __NR_exit_group
2410 2411 /* new thread calls */
2411 2412 case TARGET_NR_exit_group:
  2413 + gdb_exit(cpu_env, arg1);
2412 2414 ret = get_errno(exit_group(arg1));
2413 2415 break;
2414 2416 #endif
... ...