-
Notifications
You must be signed in to change notification settings - Fork 41
/
sleep.c
60 lines (51 loc) · 1.69 KB
/
sleep.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
/*
* mptsd sleep calibration
* Copyright (C) 2010-2011 Unix Solutions Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2
* as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, USA.
*/
#include <unistd.h>
#include <string.h>
#include <signal.h>
#include <sys/time.h>
#include <errno.h>
#include <math.h>
#include "libfuncs/log.h"
#include "config.h"
void * calibrate_sleep(void *_config) {
struct timeval tv1, tv2;
unsigned long diff = 0, loops = 0;
CONFIG *conf = _config;
if (!conf->quiet) {
LOGf("\tCalibrating sleep timeout...\n");
LOGf("\tRequest timeout : %ld us\n", conf->output_tmout);
}
do {
gettimeofday(&tv1, NULL);
usleep(1);
gettimeofday(&tv2, NULL);
diff += timeval_diff_usec(&tv1, &tv2) - 1;
} while (loops++ != 3000);
conf->usleep_overhead = diff / loops;
conf->output_tmout -= conf->usleep_overhead;
if (!conf->quiet) {
LOGf("\tusleep(1) overhead: %ld us\n", conf->usleep_overhead);
LOGf("\tOutput pkt tmout : %ld us\n", conf->output_tmout);
}
if (conf->output_tmout < 0) {
LOGf("usleep overhead is too high! Make sure the kernel is compiled with CONFIG_HIGH_RES_TIMERS.\n");
conf->output_tmout = 0;
}
pthread_exit(0);
}