- 论坛徽章:
- 0
|
/********************
pa.cc
********************/
#include<iostream>
using namespace std;
int main()
{
for(;;)
{
cout<<"aaa!"<<endl;
sleep(3);
}
return 0;
}
/*****************
pb.cc
*****************/
#include<iostream>
using namespace std;
int main()
{
for(;;)
{
cout<<"bbbbb!"<<endl;
sleep(5);
}
return 0;
}
/************
start.cc
*************/
if(pid==0)
{
fout<<"cid= "<<getpid()<<endl;
"start.cc" 36 lines, 480 characters
#include<iostream>
using namespace std;
#include<unistd.h>
#include<fstream>
int main()
{
ofstream fout;
int pid=fork();
if(pid<0)
{
cout<<"error"<<endl;
return 0;
}
fout.open("id.txt",ios::app);
if(!fout)
{
cout<<"cannot open id.txt!"<<endl;
return 0;
}
if(pid==0)
{
fout<<"cid= "<<getpid()<<endl;
fout.close();
execlp("pa","pa",NULL);
}
else if(pid>0)
{
fout<<"pid= "<<getpid()<<endl;
execlp("pb","pb",NULL);
}
fout.close();
return 0;
}
/**************
stop.cc
************/
#include<iostream>
using namespace std;
#include<fstream>
#include<unistd.h>
#include<sys/types.h>
#include<signal.h>
int main()
{
ifstream fin;
char buf[256];
string str1,str2;
fin.open("id.txt");
if(!fin)
{
cout<<"cannot open! "<<endl;
return 0;
}
fin.getline(buf,256,'=');
str1="kill "+(string)buf;
system(str1.c_str());
fin.getline(buf,256,'=');
str2="kill "+(string)buf;
system(str2.c_str());
return 0;
}
pa.cc pb.cc 是两个死循环程序
start.cc 起动pa.cc pb.cc 进程id 写入文件
stop.cc 从文件中读取id并结束pa.cc pb.cc
刚学这个东西
还望高手不吝赐教
[ 本帖最后由 linghaowangluo 于 2006-11-27 09:21 编辑 ] |
|