📄 daemon.cc
字号:
#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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -