SIGINT does not indicate an error in your program, but it is normally fatal so it can carry out the purpose of the interrupt: to kill the program. GDB has the ability to detect any occurrence of a signal in your program. You can tell GDB in advance what to do for each kind of sign...
(gdb) show follow-fork-mode Debugger response to a program call of fork or vfork is "parent". (gdb) set follow-fork-mode child (gdb) r Starting program: /root/./test_process [New process 37830] this is parent,pid = 37826 ^C Program received signal SIGINT, Interrupt. [Switching to p...
Program received signal SIGINT, Interrupt. default_idle () at arch/csky/kernel/process.c:83 83 __asm__ __volatile__( (cskygdb) hb *0x00065e34 ==》对应应用反汇编处的地址 Hardware assisted breakpoint 1 at 0x65e34 (cskygdb) c Continuing. Program received signal SIGTRAP, Trace/breakpoin...
[New Thread 0x7ffff69ff700 (LWP 7654)] [New Thread 0x7ffff61fe700 (LWP 7655)] [New Thread 0x7ffff59fd700 (LWP 7656)] 7653:M 02 Nov 15:33:27.965 * Ready to accept connections ^C Thread 1 "redis-server" received signal SIGINT, Interrupt. 0x00007ffff7d3410f in epoll_wait (epfd=...
Program received signal SIGINT, Interrupt.0x00000037ee2accc0in__nanosleep_nocancel ()from/lib64/libc.so.6(gdb) 可以看到,通过执行info signals SIGINT命令,我们调取出了当前 GDB 调试器对 SIGINT 信号处理方式的默认设定,即当 SIGINT 信号发生时,GDB 调试器会暂停程序执行,同时打印出必要的提示信息,并且不...
Program received signal SIGINT, Interrupt. 0x00007ffff6f73c5d in sigsuspend () from /lib64/libc.so.6 Missing separate debuginfos, use: yum debuginfo-install libxcrypt-4.1.1-4.el8.x86_64 pcre-8.42-4.el8.x86_64 sssd-client-2.2.0-19.el8.x86_64 zlib-1.2.11-10.el8.x86_64 ...
Thread 1.1 "rvcc" received signal SIGINT, Interrupt. 0x00007ffff7ea5c3a in __GI___wait4 (pid=-1, stat_loc=0x7fffffffdee0, options=0, usage=0x0) at ../sysdeps/unix/sysv/linux/wait4.c:27 27 ../sysdeps/unix/sysv/linux/wait4.c: 没有那个文件或目录. ...
Program received signal SIGINT, Interrupt. Reading in symbols for ../sysdeps/unix/sysv/linux/poll.c...done. __libc_do_syscall () at ../ports/sysdeps/unix/sysv/linux/arm/eabi/libc-do-syscall.S:46 46 ../ports/sysdeps/unix/sysv/linux/arm/eabi/libc-do-syscall.S: No such file or dire...
Program received signal SIGINT, Interrupt.0x4704f0b0 in nanosleep () from /lib/libc.so.6 (gdb) info thr Id Target Id Frame 5 Thread 0xb57f6470 (LWP 1489) "a.out" 0x4704f0b0 in nanosleep ()from /lib/libc.so.6 4 Thread 0xb5ff6470 (LWP 1488) "a.out" 0x4704f0b0 in nano...
(二)再就是对c后一直卡那儿,可以按ctrl+C退出( SIGINT :来自键盘的中断信号 ( ctrl + c ) .),SIGTERM:kill 命令发出 的信号.,继续n执行: Program received signal SIGINT, Interrupt. 0x0000003c9a2d3fd3 in __epoll_wait_nocancel () from /lib64/libc.so.6 ...