代码拉取完成,页面将自动刷新
/*
* <syslog.h> wrapper functions.
*
* Authors:
* Jonathan Pryor (jonpryor@vt.edu)
*
* Copyright (C) 2005 Jonathan Pryor
*/
#include <stdarg.h>
#include <syslog.h>
#include <errno.h>
#include "map.h"
#include "mph.h"
#include <glib.h>
G_BEGIN_DECLS
int
Mono_Posix_Syscall_openlog (void* ident, int option, int facility)
{
openlog ((const char*) ident, option, facility);
return 0;
}
int
Mono_Posix_Syscall_closelog (void)
{
closelog ();
return 0;
}
#ifdef __GNUC__
#pragma GCC diagnostic push
#pragma GCC diagnostic ignored "-Wformat-security"
#endif
int
Mono_Posix_Syscall_syslog (int priority, const char* message)
{
syslog (priority, message);
return 0;
}
#ifdef __GNUC__
#pragma GCC diagnostic pop
#endif
/* vararg version of syslog(3). */
gint32
Mono_Posix_Syscall_syslog2 (int priority, const char *format, ...);
gint32
Mono_Posix_Syscall_syslog2 (int priority, const char *format, ...)
{
va_list ap;
#if HAVE_VSYSLOG
va_start (ap, format);
vsyslog (priority, format, ap);
va_end (ap);
#else
/* some OSes like AIX lack vsyslog; simulate with vsprintf */
char message[256];
va_start (ap, format);
vsnprintf(message, 256, format, ap);
va_end(ap);
syslog(priority, message);
#endif
return 0;
}
G_END_DECLS
/*
* vim: noexpandtab
*/
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。