我正在学习 Linux 中的流程。我需要编写一个操作进程的任务(创建、终止、更改精度和挂起)。我已经编写了那个程序,但是 kill 和 suspend 不起作用。为了解决这个问题,我以超级用户身份启动了该程序,但这对我没有帮助。我需要做什么来修复这个错误?
#include <iostream>
#include <sys/types.h>
#include <sys/wait.h>
#include <cstring>
#include <unistd.h>
#include <sys/resource.h>
using namespace std;
int main(){
float l,r;
// system("gnome-terminal -e 'sh -c \" /home/neo/Desktop/OSLab8/childprocess/a.out 1 2 3\"'");
cout<<"Enter left and right side of the loop\n";
cin>>l>>r;
int n;
cout<<"Enter number of processes\n";
cin>>n;
// cout<<"Process 0";
int currentPid;
string cmd;
double s = l;
double step = (r-l)/n;
cout<<"Father id "<<getpid()<<endl;
int mode;
cout<<"Enter 1 to time measure mode, 2 - demo mode\n";
cin>>mode;
for(int i=0;i<n;i++) // loop will run n times (n=5)
{
switch(currentPid = fork()){
case 0:
cmd = "gnome-terminal -e 'sh -c \" /home/neo/Desktop/OSLab8/childprocess/a.out "+to_string(s)+" "+to_string(s+step)+" "+((mode==1)?"":"1 ")+"\"'";
system(cmd.c_str());
return 0;
case -1:
printf("Error when forking\n");
break;
default:
break;
}
cout<<"Son process id - "<<currentPid<<endl;
s+=step;
}
if(mode==1){}
else{
int choise;
do{
cout<<"1 Set priority of processes "<<endl;
cout<<"2 Kill processes "<<endl;
cout<<"3 Suspend:"<<endl;
cout<<"4 Exit";
cout<<"Your command: ";
cin>>choise;
switch(choise)
{
case 1:
{
cout << "Enter ID of the process: ";
int id; cin >> id;
cout << "Enter the priority (from -20 up to 19): ";
int prior; cin >> prior;
setpriority(PRIO_PROCESS,id,prior);
break;
}
case 2:
{
cout << "Enter ID of the process: ";
pid_t id; cin >> id;
kill(id,9);
break;
}
case 3:
{
cout << "Enter ID of the process: ";
int id; cin >> id;
kill(id,SIGSTOP);
break;
}
case 4:
{
cout << "Enter ID of the process: ";
int id; cin >> id;
kill(id,SIGCONT);
break;
}
}
}while(choise!=4);
}
}