gpt4 book ai didi

c - 栈在使用Pthread的多线程程序中是如何工作的?

转载 作者:行者123 更新时间:2023-12-05 09:30:58 24 4
gpt4 key购买 nike

我有一个简单的问题,我相信,据我所知,一个多线程程序,它们在所有线程之间共享进程的内存空间,包括,堆栈,全局内存区域,文件描述符等,我我想知道为什么在第一个例子中,存在一致性问题,因为理论上所有线程共享堆栈,在第二个例子中,出现竞争问题。

#include <stdio.h>
#include <pthread.h>

void *thr(void *arg)
{
for(int i = 0; i < 50; i++)
printf("Thread = %zu Value= %d\n", pthread_self(), i);
return NULL;
}

int main(void)
{
pthread_t threads[2];
for(int i = 0; i < 2; i++)
pthread_create(&threads[i], NULL, thr, NULL);
for(int i = 0; i < 2; i++)
pthread_join(threads[i], NULL);
return 0;
}

第二个程序运行有问题

#include <stdio.h>
#include <pthread.h>

int i = 0;

void *thr(void *arg)
{
for(; i < 50; i++)
printf("Thread = %zu Value= %d\n", pthread_self(), i);
return NULL;
}

int main(void)
{
pthread_t threads[2];
for(int i = 0; i < 2; i++)
pthread_create(&threads[i], NULL, thr, NULL);
for(int i = 0; i < 2; i++)
pthread_join(threads[i], NULL);
return 0;
}

3 竞争问题的示例,在这种情况下,变量在主线程中创建并作为参数传递给函数,也就是说,唯一的共享堆栈来自主线程?

#include <stdio.h>
#include <pthread.h>

void *thr(void *arg)
{
int *ptr = (int *)arg;
for(; *ptr < 50; (*ptr)++)
printf("Thread = %zu Value= %d\n", pthread_self(), *ptr);
return NULL;
}

int main(void)
{
int i = 0;
pthread_t threads[2];
for(int i = 0; i < 2; i++)
pthread_create(&threads[i], NULL, thr, &i);
for(int i = 0; i < 2; i++)
pthread_join(threads[i], NULL);
return 0;
}

最佳答案

share the process's memory space between all threads, that includes, stack

嗯,是和不是。

共享内存地址空间和特定内存区域是有区别的。

虽然所有线程确实共享一个地址空间,但每个线程都有自己的堆栈(内存分配)。

共享地址空间意味着给定的虚拟地址(指针值)在所有线程中引用相同的物理内存。

但是专用堆栈意味着每个线程的堆栈指针都从该地址空间中的不同位置开始,以免彼此冲突。

关于c - 栈在使用Pthread的多线程程序中是如何工作的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69170267/

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