免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1034 | 回复: 0
打印 上一主题 下一主题

新手错误欧查不出来帮帮忙 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-11-27 09:19 |只看该作者 |倒序浏览
/********************
       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 编辑 ]
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP