这就是问题所在:这个程序应该从标准输入接收输入并计算插入的字节数;SIGUSR1 信号将停止主程序并在文件标准错误上打印当我发送 SIGUSR1 时复制了多少字节。
这就是我的老师希望我这样做的方式:在一个终端运行
cat /dev/zero | ./cpinout | cat >/dev/null
而从第二个终端发送信号
kill -USR1 xxxx
其中 xxxx 是 cpinout 的 pid。
我更新了我以前的代码:
/* cpinout.c */
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <signal.h>
#define BUF_SIZE 1024
volatile sig_atomic_t countbyte = 0;
volatile sig_atomic_t sigcount = 0;
/* my_handler: gestore di signal */
static void sighandler(int signum) {
if(sigcount != 0)
fprintf(stderr, "Interrupted after %d byte.\n", sigcount);
sigcount = countbyte;
}
int main(void) {
int c;
char buffer[BUF_SIZE];
struct sigaction action;
sigemptyset(&action.sa_mask);
action.sa_flags = 0;
action.sa_handler = sighandler;
if(sigaction(SIGUSR1, &action, NULL) == -1) {
fprintf(stderr, "sigusr: sigaction\n");
exit(1);
}
while( c=getc(stdin) != EOF ) {
countbyte++;
fputc(c, stdout);
}
return(0);
}