interrupt.c
来自「这个是LINUX下的GDB调度工具的源码」· C语言 代码 · 共 41 行
C
41 行
#include <errno.h>#include <stdio.h>#include <unistd.h>#include <stdlib.h>intmain (){ char x; int nbytes;#ifdef usestubs set_debug_traps(); breakpoint();#endif printf ("talk to me baby\n"); while (1) { nbytes = read (0, &x, 1); if (nbytes < 0) {#ifdef EINTR if (errno != EINTR)#endif perror (""); } else if (nbytes == 0) { printf ("end of file\n"); exit (0); } else write (1, &x, 1); } return 0;}intfunc1 (){ return 4;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?