/linux-2.4.37.9/arch/s390/kernel/ |
D | gdb-stub.c | 379 void gdb_stub_send_signal(int sigval) in gdb_stub_send_signal() argument 388 *ptr++ = hexchars[sigval >> 4]; in gdb_stub_send_signal() 389 *ptr++ = hexchars[sigval & 0xf]; in gdb_stub_send_signal() 399 void gdb_stub_handle_exception(struct gdb_pt_regs *regs,int sigval) in gdb_stub_handle_exception() argument 412 send_signal(sigval); in gdb_stub_handle_exception() 426 send_signal(sigval); in gdb_stub_handle_exception()
|
/linux-2.4.37.9/arch/s390x/kernel/ |
D | gdb-stub.c | 373 void gdb_stub_send_signal(int sigval) in gdb_stub_send_signal() argument 382 *ptr++ = hexchars[sigval >> 4]; in gdb_stub_send_signal() 383 *ptr++ = hexchars[sigval & 0xf]; in gdb_stub_send_signal() 393 void gdb_stub_handle_exception(gdb_pt_regs *regs,int sigval) in gdb_stub_handle_exception() argument 405 send_signal(sigval); in gdb_stub_handle_exception() 417 send_signal(sigval); in gdb_stub_handle_exception()
|
/linux-2.4.37.9/arch/ppc/kernel/ |
D | ppc-stub.c | 461 int sigval; in handle_exception() local 499 sigval = computeSignal(regs->trap); in handle_exception() 504 *ptr++ = hexchars[sigval >> 4]; in handle_exception() 505 *ptr++ = hexchars[sigval & 0xf]; in handle_exception() 508 *ptr++ = hexchars[sigval >> 4]; in handle_exception() 509 *ptr++ = hexchars[sigval & 0xf]; in handle_exception() 538 remcomOutBuffer[1] = hexchars[sigval >> 4]; in handle_exception() 539 remcomOutBuffer[2] = hexchars[sigval & 0xf]; in handle_exception()
|
/linux-2.4.37.9/arch/ppc64/kernel/ |
D | ppc-stub.c | 463 int sigval; in handle_exception() local 496 sigval = computeSignal(regs->trap); in handle_exception() 501 *ptr++ = hexchars[sigval >> 4]; in handle_exception() 502 *ptr++ = hexchars[sigval & 0xf]; in handle_exception() 505 *ptr++ = hexchars[sigval >> 4]; in handle_exception() 506 *ptr++ = hexchars[sigval & 0xf]; in handle_exception() 535 remcomOutBuffer[1] = hexchars[sigval >> 4]; in handle_exception() 536 remcomOutBuffer[2] = hexchars[sigval & 0xf]; in handle_exception()
|
/linux-2.4.37.9/arch/cris/kernel/ |
D | kgdb.c | 359 static void stub_is_stopped (int sigval); 363 static void handle_exception (int sigval); 937 stub_is_stopped(int sigval) in stub_is_stopped() argument 948 *ptr++ = highhex (sigval); in stub_is_stopped() 949 *ptr++ = lowhex (sigval); in stub_is_stopped() 1004 handle_exception (int sigval) in handle_exception() argument 1013 stub_is_stopped (sigval); in handle_exception() 1178 remcomOutBuffer[1] = highhex (sigval); in handle_exception() 1179 remcomOutBuffer[2] = lowhex (sigval); in handle_exception()
|
/linux-2.4.37.9/arch/sparc/kernel/ |
D | sparc-stub.c | 495 int sigval; in handle_exception() local 532 sigval = computeSignal(tt); in handle_exception() 536 *ptr++ = hexchars[sigval >> 4]; in handle_exception() 537 *ptr++ = hexchars[sigval & 0xf]; in handle_exception() 586 remcomOutBuffer[1] = hexchars[sigval >> 4]; in handle_exception() 587 remcomOutBuffer[2] = hexchars[sigval & 0xf]; in handle_exception()
|
/linux-2.4.37.9/arch/sh/kernel/ |
D | kgdb_stub.c | 551 int sigval; in compute_signal() local 557 sigval = SIGILL; in compute_signal() 561 sigval = SIGSEGV; in compute_signal() 566 sigval = SIGINT; in compute_signal() 571 sigval = SIGTRAP; in compute_signal() 575 sigval = SIGBUS; /* "software generated" */ in compute_signal() 579 return (sigval); in compute_signal() 1205 int sigval; in kgdb_command_loop() local 1241 sigval = compute_signal(excep_code); in kgdb_command_loop() 1242 send_signal_msg(sigval); in kgdb_command_loop() [all …]
|
/linux-2.4.37.9/arch/mips64/kernel/ |
D | gdb-stub.c | 668 int sigval; in handle_exception() local 731 sigval = computeSignal(trap); in handle_exception() 742 *ptr++ = hexchars[sigval >> 4]; in handle_exception() 743 *ptr++ = hexchars[sigval & 0xf]; in handle_exception() 791 output_buffer[1] = hexchars[sigval >> 4]; in handle_exception() 792 output_buffer[2] = hexchars[sigval & 0xf]; in handle_exception()
|
/linux-2.4.37.9/arch/mips/kernel/ |
D | gdb-stub.c | 648 int sigval; in handle_exception() local 710 sigval = computeSignal(trap); in handle_exception() 721 *ptr++ = hexchars[sigval >> 4]; in handle_exception() 722 *ptr++ = hexchars[sigval & 0xf]; in handle_exception() 765 output_buffer[1] = hexchars[sigval >> 4]; in handle_exception() 766 output_buffer[2] = hexchars[sigval & 0xf]; in handle_exception()
|
/linux-2.4.37.9/include/asm-s390x/ |
D | gdb-stub.h | 16 extern void gdb_stub_handle_exception(gdb_pt_regs *regs,int sigval);
|
D | siginfo.h | 16 typedef union sigval { union
|
/linux-2.4.37.9/include/asm-s390/ |
D | gdb-stub.h | 15 extern void gdb_stub_handle_exception(struct gdb_pt_regs *regs,int sigval);
|
D | siginfo.h | 16 typedef union sigval { union
|
/linux-2.4.37.9/include/asm-sh/ |
D | siginfo.h | 8 typedef union sigval { union
|
/linux-2.4.37.9/include/asm-x86_64/ |
D | siginfo.h | 6 typedef union sigval { union
|
/linux-2.4.37.9/include/asm-ppc/ |
D | siginfo.h | 6 typedef union sigval { union
|
/linux-2.4.37.9/include/asm-alpha/ |
D | siginfo.h | 8 typedef union sigval { union
|
/linux-2.4.37.9/include/asm-arm/ |
D | siginfo.h | 8 typedef union sigval { union
|
/linux-2.4.37.9/include/asm-cris/ |
D | siginfo.h | 8 typedef union sigval { union
|
/linux-2.4.37.9/include/asm-i386/ |
D | siginfo.h | 8 typedef union sigval { union
|
/linux-2.4.37.9/include/asm-sh64/ |
D | siginfo.h | 8 typedef union sigval { union
|
/linux-2.4.37.9/include/asm-ppc64/ |
D | siginfo.h | 14 typedef union sigval { union
|
/linux-2.4.37.9/include/asm-parisc/ |
D | siginfo.h | 8 typedef union sigval { union
|
/linux-2.4.37.9/include/asm-mips/ |
D | siginfo.h | 17 typedef union sigval { union
|
/linux-2.4.37.9/include/asm-mips64/ |
D | siginfo.h | 17 typedef union sigval { union
|