我必须编写一个使用3个线程的程序 - 一个用于读取字母,第二个用于计算字符,第三个用于输出它们。这是代码:
#include <stdio.h>
#include <stdlib.h>
#include <sys/stat.h>
#include <unistd.h>
#include <linux/stat.h>
#include <pthread.h>
#include <string.h>
#include <signal.h>
int first[2];
int second[2];
void *input(void *ptr)
{
char str[100];
int length;
while(1)
{
printf("Enter the message: ");
fflush(stdout);
length = read(STDIN_FILENO, str, sizeof(str));
if(str[0] == ';')
exit(2);
if(length <= 0)
{
if(length == -1)
perror("read");
close(first[1]);
exit(2);
}
if(write(first[1], str, length) != length)
{
perror("write");
exit(2);
}
}
}
void *countChars(void *ptr)
{
char str[100];
int length, count = 0;
while(1)
{
length = read(first[0], str, sizeof(str));
if(length <= 0)
{
if(length == -1)
perror("read");
close(first[0]);
close(second[1]);
exit(2);
}
if(write(STDOUT_FILENO, str, length) != length)
{
perror("write");
exit(2);
}
while(str[count] != '\n') count++;
write(second[1], &count, sizeof(count));
count = 0;
}
}
void *output(void *ptr)
{
int length, count = 0;
while(1)
{
length = read(second[0], &count, sizeof(count));
if(length < sizeof(count))
{
close(second[0]);
exit(2);
}
printf("Number of characters: %d\n", count);
}
}
int main()
{
pthread_t t1, t2, t3;
if(pipe(first) == -1)
{
printf("First pipe error");
exit(1);
}
if(pipe(second) == -1)
{
printf("Second pipe error");
exit(1);
}
pthread_create(&t1, NULL, input, NULL);
pthread_create(&t2, NULL, countChars, NULL);
pthread_create(&t3, NULL, output, NULL);
pthread_join(t1, NULL);
pthread_join(t2, NULL);
pthread_join(t3, NULL);
return 0;
}
它有效,但现在我必须在这里实现信号。发送SIGUSR1信号应该停止程序执行,直到发送SIGUSR2信号。
问题在于,当我发送信号时,只有一个线程得到它。因此我必须使用FIFO来通知其他线程执行了哪些信号并在其余信号中执行它。
我怎么能这样做?
答案 0 :(得分:1)
信号被传递给进程,而不是线程。因此,任何能够处理信号的线程都可以用于调用信号处理程序。你需要做的是弄清楚如何处理信号,然后决定如何与所有线程进行通信。你还没有真正描述过你的意思&#34;停止执行程序&#34;,所以我不得不猜测。
我建议使用pthread_sigmask
和sigwait
的组合。您可以使用pthread_sigmask
禁用工作线程中的SIGUSR1和SIGUSR2的自动处理。然后在第四个信号处理程序线程中调用sigwait
以显式处理这些信号。当信号处理程序线程收到SIGUSR1时,它会设置一个全局标志。工作线程定期检查该标志并在设置时进入休眠状态(可能是条件变量?)。然后信号处理程序线程循环并再次调用sigwait
。收到SIGUSR2后,它会唤醒工作线程,然后循环并再次调用sigwait
。