1 Star 0 Fork 43

yuexiaodong/sarudp

forked from yuanhack/sarudp
关闭
 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
yhdaemon.h 829 Bytes
一键复制 编辑 原始数据 按行查看 历史
yuanhack 提交于 2015-10-04 13:27 . add yhdaemon
#ifndef __YH_YHDAEMON_H__
#define __YH_YHDAEMON_H__
#include <syslog.h>
#include <unistd.h>
#include <fcntl.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <signal.h>
#include "yherror.h"
#ifdef __cplusplus
extern "C"
{
#endif
#pragma pack(push)
#pragma pack(1)
#pragma pack(pop)
// If nochdir is zero, daemon_init() changes the calling process's current working directory to the root directory ("/");
// otherwise, the current working directory is left unchanged.
// If noclose is zero, daemon() redirects standard input, standard output and standard error to /dev/null;
// otherwise, no changes are made to these file descriptors.
void daemon_init(const char *pname, int facility, int nochdir, int noclose);
#ifdef __cplusplus
}
#endif
#endif /* __YH_YHDAEMON_H__ */
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/yuexiaodong/sarudp.git
[email protected]:yuexiaodong/sarudp.git
yuexiaodong
sarudp
sarudp
master

搜索帮助