blob: 9e12bfe7cc989fce2042adda6d130e5844bce568 [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
Dmitry V. Levin0c8853c2016-01-02 13:28:43 +000028#include "tests.h"
Dmitry V. Levin13140982015-09-17 18:25:12 +000029#include <stdio.h>
30#include <stdint.h>
31#include <signal.h>
32#include <time.h>
33#include <unistd.h>
34#include <sys/syscall.h>
35
36#if defined __NR_timer_create \
37 && defined __NR_timer_gettime \
38 && defined __NR_timer_settime
39
40int
41main(void)
42{
43 int tid;
44 struct sigevent sev = { .sigev_notify = SIGEV_NONE };
45
46 if (syscall(__NR_timer_create, CLOCK_MONOTONIC, &sev, &tid))
47 return 77;
48 printf("timer_create(CLOCK_MONOTONIC, {sigev_signo=0"
49 ", sigev_notify=SIGEV_NONE}, [%d]) = 0\n", tid);
50
51 struct {
52 struct itimerspec its;
53 uint32_t pad[4];
54 } old = {
55 .pad = { 0xdeadbeef, 0xbadc0ded, 0xdeadbeef, 0xbadc0ded }
56 }, new = {
57 .its = {
58 .it_interval = { 0xdeface1, 0xdeface2 },
59 .it_value = { 0xdeface3, 0xdeface4 }
60 },
61 .pad = { 0xdeadbeef, 0xbadc0ded, 0xdeadbeef, 0xbadc0ded }
62 };
63
64 if (syscall(__NR_timer_settime, tid, 0, &new.its, &old.its))
65 return 77;
66 printf("timer_settime(%d, 0"
67 ", {it_interval={%jd, %jd}, it_value={%jd, %jd}}"
68 ", {it_interval={%jd, %jd}, it_value={%jd, %jd}}"
69 ") = 0\n",
70 tid,
71 (intmax_t) new.its.it_interval.tv_sec,
72 (intmax_t) new.its.it_interval.tv_nsec,
73 (intmax_t) new.its.it_value.tv_sec,
74 (intmax_t) new.its.it_value.tv_nsec,
75 (intmax_t) old.its.it_interval.tv_sec,
76 (intmax_t) old.its.it_interval.tv_nsec,
77 (intmax_t) old.its.it_value.tv_sec,
78 (intmax_t) old.its.it_value.tv_nsec);
79
80 if (syscall(__NR_timer_gettime, tid, &old.its))
81 return 77;
82 printf("timer_gettime(%d"
83 ", {it_interval={%jd, %jd}, it_value={%jd, %jd}}"
84 ") = 0\n",
85 tid,
86 (intmax_t) old.its.it_interval.tv_sec,
87 (intmax_t) old.its.it_interval.tv_nsec,
88 (intmax_t) old.its.it_value.tv_sec,
89 (intmax_t) old.its.it_value.tv_nsec);
90
91 puts("+++ exited with 0 +++");
92 return 0;
93}
94
95#else
96
97int
98main(void)
99{
100 return 77;
101}
102
103#endif