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
|
#include <cpu.h>
#include <drivers/uart.h>
#include <graphics/lfb.h>
#include <lib/kmem.h>
#include <sys/core.h>
#include <sys/schedule.h>
#include <util/mutex.h>
extern void atest(void);
void btest(void);
void test_entry(void)
{
draw_string(0, 18, "Starting tests");
unsigned long long ti, tf, dt=0;
for(int i = 0; i < 64; i++) {
sys0_64(SYS_TIME, &ti);
sys0_64(SYS_TIME, &tf);
dt += tf - ti;
}
DRAW64(0, 19, dt/64);
DRAW64(17, 19, dt%64);
// atest
add_thread(atest, 0, 0);
sys0_64(SYS_TIME, &ti);
sys0(SYS_YIELD);
sys0_64(SYS_TIME, &tf);
dt += tf - ti;
DRAW64(34, 19, dt/64);
DRAW64(34+17, 19, dt%64);
btest();
}
static struct Mutex testm = {.addr = 0, .pid = 0};
static int testi = 0;
void ctest1(void)
{
uart_string("1 Started\n");
sys1(4, &testm);
uart_string("1 Finished\n");
}
void ctest2(void)
{
uart_string("2 Started\n");
sys1(4, &testm);
uart_string("2 Finished\n");
sys1(5, &testm);
}
void ctest3(void)
{
uart_string("3 Started\n");
sys1(5, &testm);
uart_string("3 Finished\n");
}
void btest(void)
{
if (testi % 3 == 0) {
testi++;
add_thread(ctest1, 0, 1);
}
else if (testi % 3 == 1) {
testi++;
add_thread(ctest2, 0, 0);
}
else if (testi % 3 == 2) {
testi++;
add_thread(ctest3, 0, 1);
}
}
|