-
Notifications
You must be signed in to change notification settings - Fork 314
/
hlist.c
85 lines (72 loc) · 2.07 KB
/
hlist.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
/*
Copyright (C) 2016 Xfennec, CQFD Corp.
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 3 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, see <http://www.gnu.org/licenses/>.
*/
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "hlist.h"
static int max_hlist_size = 2;
void set_hlist_size(double throughput_wait_secs) {
int new_size;
new_size = ceil(10.0 / throughput_wait_secs);
max_hlist_size = (new_size > 1) ? new_size : max_hlist_size;
}
int add_to_hlist(hlist **begin, hlist **end, int size, int value) {
int ret;
if (*begin == NULL) {
if ((*begin = malloc(sizeof(hlist))) == NULL)
return 0;
*end = *begin;
(*begin)->next = NULL;
(*begin)->prev = NULL;
ret = 1;
}
else if (size == max_hlist_size) {
hlist *tmp = (*end)->prev;
tmp->next = NULL;
(*end)->next = *begin;
(*end)->prev = NULL;
*begin = *end;
*end = tmp;
(*begin)->next->prev = *begin;
ret = 0;
}
else {
hlist *new = malloc(sizeof(hlist));
if (!new)
return 0;
new->next = *begin;
new->prev = NULL;
*begin = new;
(*begin)->next->prev = *begin;
ret = 1;
}
(*begin)->value = value;
return ret;
}
void free_hlist(hlist *begin) {
hlist *tmp = begin;
while (begin) {
tmp = begin->next;
free(begin);
begin = tmp;
}
}
int get_hlist_average(hlist *begin, int size) {
unsigned long long avg = 0;
while (begin) {
avg += begin->value;
begin = begin->next;
}
return avg / size;
}