diff options
author | bart <bart@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2008-04-26 11:03:42 +0000 |
---|---|---|
committer | bart <bart@a5019735-40e9-0310-863c-91ae7b9d1cf9> | 2008-04-26 11:03:42 +0000 |
commit | 63095f50782d4fcc5f3c366af04f0560d91447e5 (patch) | |
tree | aad6d675920a643e6f0712a6cdb85af1ca9a0dd6 /memcheck | |
parent | ce48fa9c7275a91922dd1c484da39c90d8719bde (diff) |
Added actual syslog system call test.
git-svn-id: svn://svn.valgrind.org/valgrind/trunk@7923 a5019735-40e9-0310-863c-91ae7b9d1cf9
Diffstat (limited to 'memcheck')
-rw-r--r-- | memcheck/tests/linux-syslog-syscall.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/memcheck/tests/linux-syslog-syscall.c b/memcheck/tests/linux-syslog-syscall.c new file mode 100644 index 00000000..d4714026 --- /dev/null +++ b/memcheck/tests/linux-syslog-syscall.c @@ -0,0 +1,23 @@ +/** Test program for the syslog() system call. + * From the syslog(2) man page: + * If you need the libc function syslog() (which talks to syslogd(8)), + * then look at syslog(3). The system call of this name is about controlā + * ling the kernel printk() buffer, and the glibc version is called + * klogctl(). + */ + +#include "../../config.h" +#include <stdio.h> +#if defined(HAVE_SYS_KLOG_H) +#include <sys/klog.h> +#endif + +int main(int argc, char** argv) +{ + int number_of_unread_characters; +#if defined HAVE_KLOGCTL + number_of_unread_characters = klogctl(9, 0, 0); +#endif + fprintf(stderr, "Done.\n"); + return 0 * number_of_unread_characters; +} |