代码拉取完成,页面将自动刷新
同步操作将从 yuanhack/sarudp 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#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__ */
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。