strace/tests/syslog.c

28 lines
456 B
C
Raw Normal View History

#include "tests.h"
#include <sys/syscall.h>
#ifdef __NR_syslog
# include <stdio.h>
# include <unistd.h>
# define SYSLOG_ACTION_READ 2
int
main(void)
{
2016-04-22 00:26:52 +03:00
const long addr = (long) 0xfacefeeddeadbeef;
int rc = syscall(__NR_syslog, SYSLOG_ACTION_READ, addr, -1);
printf("syslog(SYSLOG_ACTION_READ, %#lx, -1) = %d %s (%m)\n",
addr, rc, errno2name());
puts("+++ exited with 0 +++");
return 0;
}
#else
SKIP_MAIN_UNDEFINED("__NR_syslog")
#endif