daemon.cc

来自「达内IT培训Unix C++第三天源码 是入门Unix 下C++编程的好东西」· CC 代码 · 共 31 行

CC
31
字号
#include <iostream>using namespace std;#include <unistd.h>#include <fcntl.h>int main(){	if(fork()!=0){		cout << "parent exit." << endl;		return 0;	}	sleep(2);	cout << "now my pid:" << getpid() << ", my parent id:" << getppid() << endl;	setsid();	for(int i=0; i<3; i++)		close(i);	//其他准备工作....	char ch='A';	for(;;){//服务工作		int fd=open("letter",O_WRONLY|O_CREAT, 0644);		if(fd>=0){			write(fd, &ch, 1);			sleep(2);			if(++ch>'Z')				ch = 'A';			close(fd);		}	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?