blob: a7b93c0fbd46d9e59963c31ca7c71c75bffa2c0d [file] [log] [blame]
Dmitry V. Levin13140982015-09-17 18:25:12 +00001/*
2 * Copyright (c) 2015 Dmitry V. Levin <ldv@altlinux.org>
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. The name of the author may not be used to endorse or promote products
14 * derived from this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26 */
27
28#ifdef HAVE_CONFIG_H
29# include "config.h"
30#endif
31
32#include <stdio.h>
33#include <stdint.h>
34#include <signal.h>
35#include <time.h>
36#include <unistd.h>
37#include <sys/syscall.h>
38
39#if defined __NR_timer_create \
40 && defined __NR_timer_gettime \
41 && defined __NR_timer_settime
42
43int
44main(void)
45{
46 int tid;
47 struct sigevent sev = { .sigev_notify = SIGEV_NONE };
48
49 if (syscall(__NR_timer_create, CLOCK_MONOTONIC, &sev, &tid))
50 return 77;
51 printf("timer_create(CLOCK_MONOTONIC, {sigev_signo=0"
52 ", sigev_notify=SIGEV_NONE}, [%d]) = 0\n", tid);
53
54 struct {
55 struct itimerspec its;
56 uint32_t pad[4];
57 } old = {
58 .pad = { 0xdeadbeef, 0xbadc0ded, 0xdeadbeef, 0xbadc0ded }
59 }, new = {
60 .its = {
61 .it_interval = { 0xdeface1, 0xdeface2 },
62 .it_value = { 0xdeface3, 0xdeface4 }
63 },
64 .pad = { 0xdeadbeef, 0xbadc0ded, 0xdeadbeef, 0xbadc0ded }
65 };
66
67 if (syscall(__NR_timer_settime, tid, 0, &new.its, &old.its))
68 return 77;
69 printf("timer_settime(%d, 0"
70 ", {it_interval={%jd, %jd}, it_value={%jd, %jd}}"
71 ", {it_interval={%jd, %jd}, it_value={%jd, %jd}}"
72 ") = 0\n",
73 tid,
74 (intmax_t) new.its.it_interval.tv_sec,
75 (intmax_t) new.its.it_interval.tv_nsec,
76 (intmax_t) new.its.it_value.tv_sec,
77 (intmax_t) new.its.it_value.tv_nsec,
78 (intmax_t) old.its.it_interval.tv_sec,
79 (intmax_t) old.its.it_interval.tv_nsec,
80 (intmax_t) old.its.it_value.tv_sec,
81 (intmax_t) old.its.it_value.tv_nsec);
82
83 if (syscall(__NR_timer_gettime, tid, &old.its))
84 return 77;
85 printf("timer_gettime(%d"
86 ", {it_interval={%jd, %jd}, it_value={%jd, %jd}}"
87 ") = 0\n",
88 tid,
89 (intmax_t) old.its.it_interval.tv_sec,
90 (intmax_t) old.its.it_interval.tv_nsec,
91 (intmax_t) old.its.it_value.tv_sec,
92 (intmax_t) old.its.it_value.tv_nsec);
93
94 puts("+++ exited with 0 +++");
95 return 0;
96}
97
98#else
99
100int
101main(void)
102{
103 return 77;
104}
105
106#endif