- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在学习操作系统的工作原理,从 Raspberry Pi 上的 Linux 开始。目前,我正在编写一个程序,该程序使用 pthread 创建多个线程并相互通信。在这个程序中,将有 2 个线程(如果算上 main() 则为 3 个),1 个正在写入,另一个正在读取,两个线程都使用公共(public)结构体进行读写,并使用互斥体相互发送信号(通过检查锁,锁定和解锁)。
要检查线程通信,我会执行以下操作:写入线程将从名为 randStrings.txt 的文件中读取,计算“e”的数量和每行的字符总数,然后将这两个数字放入一个公共(public)结构中。
读取线程将写入一个名为 resultStrings.txt 的文件,从公共(public)结构中读取,然后写入 'e' 的数量(如果 e 计数!= 0),否则,写入 '-' 的总长度那条线。
到目前为止,我的线程可以相互通信,但是,我无法执行 pthread_join() 在 2 个线程之间来回切换。
这是我的代码:
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/ipc.h>
#include <sys/msg.h>
#include <string.h>
#include <unistd.h>
/*
The following structure contains the necessary information
to allow the function "dotprod" to access its input data and
place its output into the structure.
*/
typedef struct
{
int e; //number of e
int c; //number of character
} DOTDATA;
/* Define globally accessible variables and a mutex */
#define NUMTHRDS 1
DOTDATA dotstr;
pthread_t callThd[NUMTHRDS];
//Initialize mutex
pthread_mutex_t mutex_write = PTHREAD_MUTEX_INITIALIZER;
pthread_mutex_t mutex_read = PTHREAD_MUTEX_INITIALIZER;
pthread_mutex_t mutex_critical = PTHREAD_MUTEX_INITIALIZER;
void *writeMutex(void *arg)
{
int count;
int e_count;
int term_sig;
FILE *readf;
char my_lines[100];
char ch;
signed int numbers[2];
int i;
char s[50];
term_sig = -1;
//unlock write region
printf("Write thread: Unlocking write mutex\n");
pthread_mutex_unlock (&mutex_write);
//unlock critical region
printf("Write thread: Unlocking critical mutex\n");
pthread_mutex_unlock (&mutex_critical);
readf = fopen("randStrings.txt", "r");
if (readf == NULL){
printf("Error opening file");
}
//Read the file
while ((fgets(my_lines, 33, readf))!=NULL)
{
e_count = 0;
count = 0;
my_lines[sizeof(my_lines) - 1] = '\0';
printf("%s\n", my_lines);
for (i = 0; i < sizeof(my_lines); i++){
if(my_lines[i] == '\0') break;
else if (my_lines[i]=='e'){
e_count++;
}
else{ //if (my_lines[i] >= 'a' && my_lines[i] <= 'z'){
count++;
}
}
//lock write
printf("Write thread: Locking write mutex\n");
while(pthread_mutex_lock (&mutex_write)!=0)
{
printf("Write thread: Locking write mutex\n");
}
//lock critical region
printf("Write thread: Locking critical mutex\n");
while(pthread_mutex_lock (&mutex_critical)!=0)
{
printf("Write thread: Locking critical mutex\n");
}
printf("Write thread: Writing value\n");
//write to global varibales
dotstr.e = e_count;
dotstr.c = count;
//unlock critical region
printf("Write thread: Unlocking critical mutex\n");
pthread_mutex_unlock (&mutex_critical);
//unlock read
printf("Write thread: Unlocking read mutex\n");
pthread_mutex_unlock (&mutex_read);
printf("\nParent(%d) send value: [%d, %d]\n", getpid(), e_count, count);
printf("Joining thread!\n");
if((pthread_join(callThd[1], NULL)) !=0)
{
printf("Error joining with reading thread!\n");
}
}
fclose(readf);
//lock write
printf("Write thread: Locking write, end signal, mutex\n");
while(pthread_mutex_lock (&mutex_write)!=0)
{
printf("Write thread: Locking write, end signal, mutex\n");
}
//lock critical region
printf("Write thread: Locking critical, end signal, mutex\n");
while(pthread_mutex_lock (&mutex_critical)!=0)
{
printf("Write thread: Locking critical, end signal, mutex\n");
}
printf("Read thread: reading value\n");
//write to global variables
dotstr.e = term_sig;
dotstr.c = term_sig;
//unlock critical region
printf("Write thread: Unlocking critical, end signal, mutex\n");
pthread_mutex_unlock (&mutex_critical);
//unlock read
printf("Write thread: Unlocking read, end signal, mutex\n");
pthread_mutex_unlock (&mutex_read);
pthread_exit(NULL);
}
void *readMutex(void *arg)
{
char readBuffer[1000];
FILE *readf1;
int numbers_e;
int numbers_c;
int sig;
int j;
sig--;
//open the result file.
readf1 = fopen("resultStrings.txt", "w");
while(numbers_e != sig && numbers_c != sig)
{
//unlock read
printf("Read thread: Unlocking read mutex\n");
pthread_mutex_unlock (&mutex_read);
//lock read
printf("Read thread: Locking read mutex\n");
while(pthread_mutex_lock (&mutex_read)!=0)
{
printf("Read thread: Locking read mutex\n");
}
//lock critical region
printf("Read thread: Locking critical mutex\n");
while(pthread_mutex_lock (&mutex_critical)!=0)
{
printf("Read thread: Locking critical mutex\n");
}
printf("Read thread: Reading value\n");
//read global varibales
numbers_e = dotstr.e;
numbers_c = dotstr.c;
//unlock critical region
printf("Read thread: Unlocking critical mutex\n");
pthread_mutex_unlock (&mutex_critical);
//unlock read
printf("Read thread: Unlocking write mutex\n");
pthread_mutex_unlock (&mutex_write);
readBuffer[0] = 0; //reset readBuffer
//Un-bundling data
printf("\nConsumer (%d) Bundle received: [%i, %i]\n", getpid(), numbers_e, numbers_c);
//readBuffer[0] = 0;
if(numbers_e!= 0) {
for (j = 0; j < numbers_e; j++){
readBuffer[j] = 'e';
}
readBuffer[j+1] = '\0';
for (j = 0; j < sizeof(readBuffer); j++) {
if (readBuffer[j] == 'e'){
fprintf(readf1, "%c", readBuffer[j]);
printf("%c", readBuffer[j]);
}
}
fprintf(readf1, "\n");
printf("\n\n");
}
else if(numbers_c != 0) {
for (j = 0; j < numbers_c; j++){
readBuffer[j] = '-';
}
readBuffer[j+1] = '\0';
for (j = 0; j < sizeof(readBuffer) - 1; j++) {
if (readBuffer[j] == '-'){
fprintf(readf1, "%c", readBuffer[j]);
printf("%c", readBuffer[j]);
}
}
fprintf(readf1, "\n");
printf("\n");
}
if((pthread_join(callThd[0], NULL)) !=0)
{
printf("Error joining with writing thread!\n");
}
}
fclose(readf1);
pthread_exit(NULL);
}
// Main program
int main (int argc, char *argv[])
{
//other variables
pthread_attr_t attr;
void *status;
printf("Locking all mutexes...\n");
pthread_mutex_lock (&mutex_read);
pthread_mutex_lock (&mutex_critical);
pthread_mutex_lock (&mutex_write);
//Threads attribute
pthread_attr_init(&attr);
//pthread_attr_setdetachstate(&attr, PTHREAD_CREATE_JOINABLE);
//Create threads
printf("Creating writing thread...\n");
pthread_create(&callThd[1], &attr, readMutex, NULL);
pthread_create(&callThd[0], &attr, writeMutex, NULL);
printf("Creating reading thread...\n");
for(;;){
}
printf("Program finished, deleting all mutexes...\n");
pthread_mutex_destroy(&mutex_write);
pthread_mutex_destroy(&mutex_read);
pthread_mutex_destroy(&mutex_critical);
pthread_exit(NULL);
}
输出:
Locking all mutexes...
Creating writing thread...
Creating reading thread...
Write thread: Unlocking write mutex
Write thread: Unlocking critical mutex
kuuxfithomqjnyxqsdpagdue
Write thread: Locking write mutex
Write thread: Locking critical mutex
Write thread: Writing value
Write thread: Unlocking critical mutex
Write thread: Unlocking read mutex
Parent(2917) send value: [1, 24]
Read thread: Unlocking read mutex
Read thread: Locking read mutex
Read thread: Locking critical mutex
Read thread: Reading value
Read thread: Unlocking critical mutex
Read thread: Unlocking write mutex
Consumer (2917) Bundle received: [1, 24]
e
Joining thread!
Error joining with reading thread!
czfnvphqnmzhunukxhjvxbyncerxjba
Write thread: Locking write mutex
Write thread: Locking critical mutex
Write thread: Writing value
Write thread: Unlocking critical mutex
Write thread: Unlocking read mutex
Parent(2917) send value: [1, 31]
Joining thread!
Error joining with reading thread!
gzxwgojtnrnblyyshtqjrelwvif
Write thread: Locking write mutex
^C
编辑2:感谢达伦指出我的错误。通过在我不需要的地方使用指针,他们弄乱了我的结果。
现在我发现了另一个问题,当使用 pthread_join() 在两个线程之间来回跳转时,它只能跳转一次。读取线程已完成处理来自写入线程的数据,并且写入线程仍然有更多数据要发送,但它永远不能再次调用读取线程来执行此操作。有没有办法可以在两个线程之间来回切换?也许有一种更简单的方法可以在不使用 pthread_join() 的情况下执行此操作?
另外,当两个线程完成工作后如何停止程序?现在,我必须在 main 中放置一个无限循环,以保持它们运行,而不会在线程完成之前销毁所有互斥体,但除了 CTRL + C 之外,没有办法阻止它们。
最佳答案
当您确实不需要它们时,您创建了很多指针(“*”字符)。您似乎不知道它们的用途...如果您将某些内容用作数字,只需使用“int”,而不是“int *”...
关于c - 线程间通信,线程之间的切换,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19614086/
大多数语言都支持双向进程通信。例如,在 Python 中,我可以(草率地)执行以下操作: >>> from subprocess import * >>> p = Popen('nslookup',
致力于使用 C++ 在 arduino 和 PC (Win 7) 之间进行通信。使用 WriteFile 和 ReadFile 创建通信或简单地发送或接收数据没有问题。但是当我想以某种方式“协调”沟通
我们正在开发一个基于微服务的应用程序。它们将使用 Helm Package Manager 部署到 kubernetes,并且它们都存储了自己的存储库和 helm chart。以下是我们微服务的名称。
我正在开发一个大型 MVVM 应用程序。我为此使用了 MVVM 轻量级工具包。该应用程序就像一个带有后退和前进按钮的网络浏览器。主视图是一个用户控件。我在主视图用户控件中放置了后退和前进按钮。主视图又
我在 java 和 freepascal(lazarus) 应用程序之间的通信有问题。我使用套接字。它们正确连接。一切都很顺利,直到我想从一个应用程序向另一个应用程序发送一些东西。在java而不是“a
我已经使用客户端套接字和服务器套接字使用C#编写了群聊。 当我使用VS 2017在自己的PC中运行程序(服务器和客户端)时,客户端和服务器之间的通信工作正常。 当我在笔记本电脑中运行客户端程序,并在自
Kubernetes 中两个不同 Pod 之间的通信是如何发生的? 就我而言,我有两个 Pod:前端和后端,它们都有不同的容器。 我希望我的前端 pod 与后端 pod 通信,但我不想使用后端 pod
我正在尝试在浏览器中嵌入的 flash 实例与在 C# WinForms 应用程序中运行的 flash 实例之间进行通信...我收到一个编译错误,内容为: 1119 Access of possibl
鉴于网络上缺乏信息,请问一个问题:我要在 Android 中创建一个应用程序,使用一个数据库应用程序 rails 。为此,我需要一个手动 session 。所以如果有人准备好了示例/教程显示通信 an
我正在编写一个应用程序,它将通过 MySQL 数据库对用户进行身份验证。我已经用 Java (android) 编写了它,但现在正在移植到 Windows 手机。 PHP 文件使用 $get 然后回显
是否可以通过互联网在两个不同设备上的两个不同应用程序之间建立通信。我想从设备 A 上的应用程序点击一个设备 B 上的应用程序,然后从设备 B 上的应用程序获取数据到设备 A 上的应用程序。如果可能,如
这是脚本: 它被放置在其他网站上。 com 并显示一个 iframe。如果有人点击 iframe 中的某个内容,脚本应该将一个 div 写入 othersite 。 com. 所以我的问题是如何做到
你好我是 php 的新手,我用 c++ 编写了整个代码并想在 php 中使用这段代码。所以我为我的代码制作了 dll 以使用它。但是我不能在 php 中使用这个 dll,可以谁能给我完整的代码来使用
我确定之前已经有人问过(并回答过)此类问题,所以如果是这样,请将我链接到之前的讨论... 在 C++ 中,假设我有一个 ClassA 类型的对象,其中包含一个 ClassB 类型的私有(private
我正在尝试使用 ATmega32 进行串行通信。首先,我使用 RS232,使用 USB-to-RS232 建立使用串行终端的接收和传输(在我的例子中是 tera 术语)。无论我从串行终端 Atmega
我找不到适用于 Ruby 的 SSL 实现。 我的部分项目需要服务器和客户端之间的安全通信链接,我希望为此使用 SSL 以创建安全 session 。 谢谢 最佳答案 如果你使用 Ruby 1.9.x
我正在尝试在客户端/服务器之间进行 SSL 通信。 到目前为止,我已经从 keystore 创建了 java.security.cert.X509Certificate。接下来我应该怎么做才能使这次沟
我在与 Windows 上的 USB 设备 通信时遇到问题。我不能使用 libusb 或 WinUSB,因为我有一个特定的驱动程序(Silabs USB 到 UART,这是一个 USB 到串口的桥接器
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我发现 xcom 实际上是将数据写入数据库并从其他任务中提取数据。我的数据集很大,将其腌制并写入数据库会导致一些不必要的延迟。有没有办法在不使用 xcom 的情况下在同一 Airflow Dag 中的
我是一名优秀的程序员,十分优秀!