linux如何启动多个用户进程?
展开全部
一般linux系统上,使用fork来启动多进程。
以实际代码解答
#include<unistd.h>
#include<stdio.h>
int main(int argc, char ** argv )
{
int pid = fork();
if (pid < 0)
{
printf("error!");
}
else if( pid == 0 )
{
printf("This is the child process!"); //此处就是子进程执行
}
else{
printf("This is the parent process! child process id = %d", pid); //此处是父进程.
}
return 0;
}
fork 函数的特点就是一次调用,两次返回。并且返回给子进程和父进程的返回值不同,对于子进程返回为0,对于父进程返回为子进程的PID号
系统调用fork后进程就分叉了。
以实际代码解答
#include<unistd.h>
#include<stdio.h>
int main(int argc, char ** argv )
{
int pid = fork();
if (pid < 0)
{
printf("error!");
}
else if( pid == 0 )
{
printf("This is the child process!"); //此处就是子进程执行
}
else{
printf("This is the parent process! child process id = %d", pid); //此处是父进程.
}
return 0;
}
fork 函数的特点就是一次调用,两次返回。并且返回给子进程和父进程的返回值不同,对于子进程返回为0,对于父进程返回为子进程的PID号
系统调用fork后进程就分叉了。
力控科技
2024-08-19 广告
2024-08-19 广告
ForceSCADA是力控科技信创产品的重要组成部分,具备完全自主知识产权,支持部署在Linux桌面版、服务器版、嵌入式等系统架构下。使用ForceSCADA可以搭建创新性高、扩展性佳、融合度强的SCADA平台,进而构建高效、智能化的监控中...
点击进入详情页
本回答由力控科技提供
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询