-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchronos_utils.c
executable file
·121 lines (99 loc) · 3.72 KB
/
chronos_utils.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
/***************************************************************************
* Copyright (C) 2009-2012 Virginia Tech Real-Time Systems Lab *
* Written by Matthew Dellinger *
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
* 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., *
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
***************************************************************************/
#include <string.h>
#include <signal.h>
#include <sys/syscall.h>
#include "chronos_utils.h"
int deadline_met(struct timespec *end_time, struct timespec *deadline) {
return (end_time->tv_sec < deadline->tv_sec ||
(end_time->tv_sec == deadline->tv_sec &&
end_time->tv_nsec <= deadline->tv_nsec));
}
unsigned long subtract_ts(struct timespec *first, struct timespec *last) {
signed long nsec;
unsigned long time;
nsec = last->tv_nsec - first->tv_nsec;
if(nsec < 0) {
time = BILLION + nsec;
time += (last->tv_sec - first->tv_sec - 1)*BILLION;
} else
time = nsec + (last->tv_sec - first->tv_sec)*BILLION;
return time;
}
void burn_cpu(long long exec_usec, double exec_slope) {
long long i;
long long j;
long long num_loop;
num_loop = (long long)((double)exec_usec/(exec_slope));
for(i = 0; i<num_loop; i++)
j++;
}
void burn_cpu_abort(long long exec_usec, double exec_slope, char *abort) {
long long i;
for(i = 0; i < exec_usec; i++) {
if(*abort)
return;
burn_cpu(1, exec_slope);
}
}
unsigned long long subtract_ts_mod(struct timespec *first, struct timespec *last) {
//This function is includedin "stm_chronos" and named there "subtract_ts_mo". It is included here because "rstm" cannot include "stm_chronos.hpp"
signed long nsec;
unsigned long long int time;
nsec = last->tv_nsec - first->tv_nsec;
if(nsec < 0) {
time = BILLION + nsec;
time += ((unsigned long long)(last->tv_sec - first->tv_sec - 1))*BILLION;
} else {
time = nsec + ((unsigned long long)(last->tv_sec - first->tv_sec))*BILLION;
}
return time;
}
/* Make a periodic thread */
timer_t * make_periodic_threads(timer_t *timer,
void (*func)(union sigval),
void *arg,
struct timespec start_time,
struct timespec period,
pthread_attr_t *tattr) {
struct sigevent event;
struct itimerspec new_value, old_value;
/* create a timer */
event.sigev_notify_function = func;
event.sigev_value.sival_ptr = arg;
event.sigev_notify = SIGEV_THREAD;
event.sigev_notify_attributes = tattr;
if(timer_create(CLOCK_REALTIME, &event, timer) < 0) {
perror("creating timer fails");
return NULL;
}
/* start the timer */
memcpy(&new_value.it_value, &start_time, sizeof(struct timespec));
memcpy(&new_value.it_interval, &period, sizeof(struct timespec));
if(timer_settime(*timer, TIMER_ABSTIME, &new_value, &old_value) < 0) {
perror("timer_settime fails");
return NULL;
}
return timer;
}
int delete_periodic_thread(timer_t timer) {
return timer_delete(timer);
}