This repository has been archived by the owner on Oct 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
timertest.c
67 lines (64 loc) · 1.72 KB
/
timertest.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
/*
* See http://www.asterisk.org for more information about
* the Asterisk project. Please do not directly contact
* any of the maintainers of this project for assistance;
* the project provides a web site, mailing lists and IRC
* channels for your use.
*
* This program is free software, distributed under the terms of
* the GNU General Public License Version 2 as published by the
* Free Software Foundation. See the LICENSE file included with
* this program for more details.
*/
#include <string.h>
#include <stdio.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/ioctl.h>
#include <sys/select.h>
#include <sys/time.h>
#include <errno.h>
#ifdef STANDALONE_ZAPATA
#include "kernel/zaptel.h"
#else
#include <zaptel/zaptel.h>
#endif
int main(int argc, char *argv[])
{
int fd;
int x = 8000;
int res;
fd_set fds;
struct timeval orig, now;
fd = open("/dev/zap/timer", O_RDWR);
if (fd < 0) {
fprintf(stderr, "Unable to open timer: %s\n", strerror(errno));
exit(1);
}
printf("Opened timer...\n");
if (ioctl(fd, ZT_TIMERCONFIG, &x)) {
fprintf(stderr, "Unable to set timer: %s\n", strerror(errno));
exit(1);
}
printf("Set timer duration to %d samples (%d ms)\n", x, x/8);
printf("Waiting...\n");
gettimeofday(&orig, NULL);
for(;;) {
FD_ZERO(&fds);
FD_SET(fd, &fds);
res = select(fd + 1, NULL, NULL, &fds, NULL);
if (res != 1) {
fprintf(stderr, "Unexpected result %d: %s\n", res, strerror(errno));
exit(1);
}
x = -1;
if (ioctl(fd, ZT_TIMERACK, &x)) {
fprintf(stderr, "Unable to ack timer: %s\n", strerror(errno));
exit(1);
}
gettimeofday(&now, NULL);
printf("Timer Expired (%ld ms)!\n", (now.tv_sec - orig.tv_sec) * 1000 + (now.tv_usec - orig.tv_usec) / 1000);
}
exit(0);
}