gpt4 book ai didi

c - 如何让子线程等待主线程

转载 作者:行者123 更新时间:2023-11-30 16:30:55 25 4
gpt4 key购买 nike

我有 2 个线程:一个子线程检测鼠标事件,另一个主线程执行程序。

全局变量:

int g_wait = 0; 

子线程:

void *mouseEvent2(void *arg) 
{
int fd;
struct input_event ev;
const char* pFile = "/dev/input/event0";

signal(SIGINT, SAMPLE_VGS_HandleSig);
signal(SIGTERM, SAMPLE_VGS_HandleSig);

fd = open(pFile, O_RDONLY);
if (fd == -1) {
printf("ERROR Opening %s\n", pFile);
return NULL;
}

while(scroll != -1) {
read(fd, &ev, sizeof(ev));

[... Some code with if statement ... ]
if(...) //left mouse button
g_wait = !g_wait;

[need waiting so the thread won't use at 100% a core]
}
close(fd);
(void) arg;
pthread_exit(NULL);
}

主线程:

int main() {
[... some code and initilisation here ...]
if(pthread_create(&scrollThread, NULL, mouseEvent2, NULL))
goto _FAILURE_;
do {
[...]
while(g_wait);
}
[... some deinit ...]
_FAILURE_ :
pthread_join(scrollThread, NULL);
[... some other deinit ...]
return 0;
}

我的问题是:当我的主线程等待时,我的子线程正在 100% 使用 1 核处理器,那么我可以使用哪个函数来暂停主线程的子线程?

我已经咨询过How to make main thread wait for all child threads finish?但这并没有完全帮助我。

最佳答案

因此,如果您想暂停主线程直到子线程发出信号结束,您可以使用互斥锁来锁定主线程:

#include "stdio.h"
#include "pthread.h"

/* I work on windows now, so i need windows sleep function to test example */
/* platform independed sleep function */
#ifdef _WIN32
# include "windows.h"
# define platform_sleep(ms) Sleep(ms)
#else
# include "unistd.h"
# define platform_sleep(s) sleep(s / 1000)
#endif


pthread_mutex_t mtx;


void *
child_func(void *arg)
{
/* simulate some hard work */
platform_sleep(3000); /* 3 secs */

/* after this "hard work" we allow main thread to continue */
pthread_mutex_unlock(&mtx);
}



int
main()
{
pthread_mutex_init(&mtx, NULL);
pthread_mutex_lock(&mtx);

pthread_t child;
pthread_create(&child, NULL, child_func, NULL);

/* mutex is already locked by main thread, so it waits */
/* until child thread unlock it */
pthread_mutex_lock(&mtx);
pthread_mutex_destroy(&mtx);

/* do work after child ends */
}

关于c - 如何让子线程等待主线程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50840185/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com