gcc (GCC) 4.6.3
valgrind-3.6.1
我创建了一个应用程序,它在 2 个不同的线程中发送和接收一些消息,用于发送和接收。对锁使用 pthread、条件变量和互斥锁。
但是,发送者将发送消息,然后向接收者发出信号以接收并处理它。它在一个while循环中执行此操作。
但是,如果我想通过使用 ctrl-c 并处理中断来退出应用程序,则会出现问题。如果没有消息被发送,那么接收者就会陷入等待接收的 while 循环中。
主线程将调用 join 并阻塞等待接收者完成。但它不像它在等待pthread_cond_wait
。
我正在考虑使用pthread_cancel
or pthread_kill
。但我不喜欢这样做,因为它不允许线程正常退出。
非常感谢您的任何建议。
主功能
void main(void)
{
/* Do some stuff here */
/* Start thread that will send a message */
if(pthread_create(&thread_recv_id, &thread_attr, thread_recv_fd, NULL) == -1) {
fprintf(stderr, "Failed to create thread, reason [ %s ]",
strerror(errno));
break;
}
printf("Start listening for receiving data'\n");
/* Start thread to receive messages */
if(pthread_create(&thread_send_id, &thread_attr, thread_send_fd, NULL) == -1) {
fprintf(stderr, "Failed to create thread for receiving, reason [ %s ]",
strerror(errno));
break;
}
/* Clean up threading properties */
pthread_join(thread_send_id, NULL);
pthread_join(thread_recv_id, NULL); <---- blocking here waiting for the recv thread to finish
pthread_mutex_destroy(&mutex_queue);
pthread_cond_destroy(&cond_queue);
return 0;
}
发件人线程
void *thread_send_fd()
{
pthread_mutex_lock(&mutex_queue);
if(send_fd((int)fd) == FALSE) {
/* Just continue to send another item */
continue;
}
/* Signal the waiting thread to remove the item that has been sent */
pthread_cond_signal(&cond_queue);
pthread_mutex_unlock(&mutex_queue);
}
接收线程
void *thread_recv_fd()
{
while(is_receiving()) {
pthread_mutex_lock(&mutex_queue);
/* Wait for an item to be sent on the queue */
pthread_cond_wait(&cond_queue, &mutex_queue); <---- waiting here
queue_remove();
pthread_mutex_unlock(&mutex_queue);
}
pthread_exit(NULL);
}