关于进程动态池的问题。我需要保留免费流程的信息。如果自由进程的数量小于N
,我应该创建新的进程。但是,我知道free
变量在每个过程中都是相同的。如何使free
变量“全局”并改变子进程将改变父进程中的变量,然后父进程可以检查并生成更多子进程?像共享内存和其他IPC的东西。很少与他们混淆。
free=5;
for (i=0;i<5;i++) // create 5 pre-forks
{
pid=fork();
if (pid==0) //child
{
break;
}
else//parent
{
}
}
while (1)
{
if (pid==0) // child
{
newsock = accept(listensock, NULL,NULL);
free--; //children is busy
send(newsock, buffer, nread, 0);
close(newsock);
free++;
}
else if (pid>0) // parent
{
if ...// if less than n fork() more
}
}
答案 0 :(得分:0)
正如您所说,您可以使用共享内存来存储在不同进程之间共享的变量。其中一个进程必须使用shmget
shmget需要一个键来识别共享内存区域,大小和一些其他选项。创建的常用选项是IPCCREAT | 0666
,以使用unix权限0666
其他进程调用shmget
并将0作为使用已初始化的段的最后一个参数。
要将流程方向空间与共享内存连接,您必须使用shmat
示例:
#define KEY ((key_t) 1234) //Any value, just dont overlap other applications in the machine
#define SIZE sizeof(int)
int* free;
int id = shmget(KEY, SIZE, IPCCREAT | 0666);
if (id < 0) //Error...
free = (int*) shmat(id, 0, 0);
if (free <= (int*)(0)) // shmat failed...
//At this point, you can use free as a normal variable
*free = 5;
*free++;
...
//As various processes can access free, you must use any control mechanism (mutex, semaphores...)
shmdt(id); //Unlink shared memory segment