我正在编写这段代码,它基本上接受一个参数,指定我想要多少个子线程,分叉获取它们,然后打印存储在数组中的所有pid。
如果只有父节点需要PID,这样会很好,但我也需要孩子来获取他们的IDS(pcid)。我从网上复制并粘贴了一些代码(我真的不明白),所以我不确定为什么它不起作用。
第一次打印PID后出现分段错误。
这里有什么问题?
#include <stdio.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <sys/shm.h>
#include <sys/ipc.h>
int main(int argc, char *argv[])
{
if(argc < 2) {
printf("ERROR: No arguments fed.\n");
exit(-1);
}
int amount = atoi(argv[1]);
int i;
int pid = 1;
int pcid = 0;
key_t key;
int shmid;
int *arr[amount];
key = ftok("thread1.c",'R');
shmid = shmget(key, 1024, 0644 | IPC_CREAT);
for(i = 0; i < amount; i++)
{
if(pid != 0)
{
pid = fork();
}
*arr = shmat(shmid, (void *) 0, 0);
if(pid != 0)
{
*arr[i] = pid;
}
else
{
pcid = *arr[i];
break;
}
}
if(pid != 0)
{
printf("Printing PID Array:\n");
for(i =0; i < amount; i++)
{
printf("%d\n", *arr[i]);
}
}
else
{
printf("My PID: %d\n",pcid);
}
}
答案 0 :(得分:0)
您正在使用指针数组。在行*arr = shmat(shmid, (void *) 0, 0)
中,您将共享内存访问点分配给数组的第一个元素。现在,当您使用*arr[i] = pid
时,它将转到数组i+1
元素,其中存在未知地址,并且您尝试在其中放置值。所以你有分段错误。