我是 C 语言的初学者。我有这个想法来编写一个程序,该程序将找到我可以打开的最大进程数。
我拿出这段代码:
int main() {
while (1){
pid_t pid = fork();
if(pid) {
if ( pid == -1){
fprintf(stderr,"Can't fork,error %d\n",errno);
exit(EXIT_FAILURE);
}else{
int status;
alarm(30);
if(waitpid(pid, &status, 0)==pid) {
alarm(0);
// the child process complete within 30 seconds
printf("Waiting.");
}else {
alarm(0);
// the child process does not complete within 30 seconds
printf("killed");
kill(pid, SIGTERM);
}
}
}
else{
alarm(30);
printf("child");
}
}
}
问题是这个程序导致我的笔记本电脑崩溃..:-|
我假设当程序无法打开更多进程时,我会从 fork() 中得到-1,然后退出程序。好吧,它没有发生。
任何想法?我在这里想念什么?
谢谢!