linux如何启动多个用户进程?
发布网友
发布时间:2022-04-23 05:00
我来回答
共2个回答
热心网友
时间:2023-07-28 23:10
一般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后进程就分叉了。
热心网友
时间:2023-07-28 23:10
多用户 一般是 init 3模式下,能够多用户同时登陆进入系统,本地的,远程的。
单用户模式,一般用在系统维护。