1 Star 0 Fork 43

yuexiaodong/sarudp

forked from yuanhack/sarudp
关闭
 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
yherror.h 1.96 KB
一键复制 编辑 原始数据 按行查看 历史
yuanhack 提交于 2015-09-15 10:39 . stash: syn-ack cache
#ifndef __YH_ERROR_H__
#define __YH_ERROR_H__
#include <stdarg.h> /* ANSI C header file */
#include <syslog.h> /* for syslog() */
#include <stdarg.h> /* ANSI C header file */
#include <syslog.h> /* for syslog() */
#include <errno.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#define YH_ERROR_MAXLINE 1024
extern int daemon_proc; /* set nonzero by daemon_init() */
#ifdef __cplusplus
extern "C"
{
#endif
#pragma pack(push)
#pragma pack(1)
#pragma pack(pop)
/* Nonfatal error related to a system call.
* Print a message and return. */
/* $$.ix [err_ret]~function,~source~code$$ */
void
err_ret(const char *fmt, ...);
/* Fatal error related to a system call.
* Print a message and terminate. */
/* $$.ix [err_sys]~function,~source~code$$ */
void
err_sys(const char *fmt, ...);
/* Fatal error related to a system call.
* Print a message, dump core, and terminate. */
/* $$.ix [err_dump]~function,~source~code$$ */
void
err_dump(const char *fmt, ...);
/* Nonfatal error unrelated to a system call.
* Print a message and return. */
/* $$.ix [err_msg]~function,~source~code$$ */
void
err_msg(const char *fmt, ...);
#define log_msg(fmt, ...) err_msg(fmt, ##__VA_ARGS__)
/* Fatal error unrelated to a system call.
* Print a message and terminate. */
/* $$.ix [err_quit]~function,~source~code$$ */
void
err_quit(const char *fmt, ...);
#define ERR_LOG(errfunc, format, ...) \
do { \
errfunc("\e[7m%s:%d `%s'\e[m "format,__FILE__,__LINE__,__func__,##__VA_ARGS__);\
} while (0)
#define ERR_MSG(s,...) ERR_LOG(err_msg,s,##__VA_ARGS__)
#define ERR_RET(s,...) ERR_LOG(err_ret,s,##__VA_ARGS__)
#define ERR_SYS(s,...) ERR_LOG(err_sys,s,##__VA_ARGS__)
#define ERR_DUMP(s,...) ERR_LOG(err_dump,s,##__VA_ARGS__)
#define ERR_QUIT(s,...) ERR_LOG(err_quit,s,##__VA_ARGS__)
#define LOG_MSG(s,...) ERR_LOG(log_msg,s,##__VA_ARGS__)
#define LOG_MARK() ERR_LOG(log_msg,"")
#ifdef __cplusplus
}
#endif
#endif /* __YH_ERROR_H__ */
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/yuexiaodong/sarudp.git
[email protected]:yuexiaodong/sarudp.git
yuexiaodong
sarudp
sarudp
master

搜索帮助