阅读量:0
在C++中,可以使用系统调用来创建和管理进程。以下是一个简单的示例,演示如何在C++中创建和管理进程:
#include <iostream> #include <cstdlib> #include <unistd.h> int main() { int pid = fork(); if (pid == -1) { std::cerr << "Error creating child process" << std::endl; exit(1); } else if (pid == 0) { // Child process std::cout << "Child process is running" << std::endl; // Add code here for child process } else { // Parent process std::cout << "Parent process is running" << std::endl; // Add code here for parent process } return 0; }
在上面的示例中,fork()
系统调用被用来创建一个新的进程。如果fork()
返回值为-1,表示创建进程失败,如果返回值为0,表示当前代码段在子进程中执行,如果返回值大于0,表示当前代码段在父进程中执行。
在子进程和父进程中,可以分别添加需要执行的代码。如果需要等待子进程执行完毕,可以使用waitpid()
系统调用。
需要注意的是,在使用fork()
系统调用时,需要包含unistd.h
头文件。另外,还可以使用exec()
系列函数来在子进程中加载其他程序。