gpt4 book ai didi

c - 如何从C中的线程退出程序?

转载 作者:行者123 更新时间:2023-12-03 18:47:26 25 4
gpt4 key购买 nike

关闭。这个问题需要debugging details .它目前不接受答案。












想改进这个问题?将问题更新为 on-topic对于堆栈溢出。

12 个月前关闭。




Improve this question




如何从非主线程中停止程序?
我正在创建一个新线程。

/* Listen for user commands in new thread */
pthread_t tid;
pthread_create(&tid, NULL, &commands, NULL);
如果用户键入 exit,我想停止程序.
/* Listen for user input */
void *commands(void *arg)
{
char command[100];
while(1)
{
printf("Type 'exit' to stop program\n");
fgets (command, 100, stdin);
if(strcmp(command, "exit") == 0) {
// TODO exit
}
}
}
我试过调用 exit(0)来自 commands方法,但这什么也没做。

最佳答案

您应该调用 pthread_exit正确退出您的线程。请注意,您的应用程序应该使用 pthread_join 等待它退出。 .

关于c - 如何从C中的线程退出程序?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/67735447/

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