在我的程序中,我有一个系统调用“sendmsg()”。我想测试如果这个系统调用被中断会发生什么。我该怎么做?
int test(args) {
-----
/* I can use GDB and stop at this point */
n = sendmsg(h, send_msg, 0);
----
return n;
}
int test_caller(args) {
int a, err;
a = test(arg);
if (a != what_i_am_expecting) {
err = error;
switch (err) {
case EINTR:
syslog(LOG_ERR, "I WANT TO SEE THIS LOG");
break;
default:
}
} else printf("Everything went well\n");
return 0;
}
在同一个函数中,我注册了一个信号处理程序,如下所示:
1366 struct sigaction sa;
1367
1368 memset (&sa, '\0', sizeof(sa));
1369 sa.sa_handler = sighdl;
1370 sa.sa_flags = 0;
1371 (void)sigaction(SIGINT, &sa, NULL);
使用此处理程序:
1349 static void
1350 sighdl(int signo)
1351 {
1352 int i = 0;
1353 syslog(LOG_ERR, "got signal %d", signo);
1354 for (i = 0; i < 100; i++) {
1355 }
1356 }
我的想法是在调用 sendmsg() 之前中断 test() 函数,然后将 sigint 发送到 pid。但不确定这个信号;它是否在测试调用者中进入 EINTR 案例。
请帮忙!