blob: ff55bd49b69d0218e597e7318dc82dd961de8f2f (
plain)
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
|
#include "../graphics/drawer.h"
#include "../sys/core.h"
#include "../sys/timer.h"
#include "../util/time.h"
#include "../util/mutex.h"
#include "../drivers/uart.h"
#define SYS_TIMER_C
extern char* os_info_v;
unsigned long exe_cnt = 0;
struct Mutex exe_cnt_m = {.addr = &exe_cnt, .pid = NULL_PID};
void c_timer() {
// Reset the counter
write_cntv_tval(cntfrq);
// Output the value
//uart_string((char*)"Timer Value: ");
//unsigned long v = read_cntv_tval();
//uart_10(v);
//uart_char(0x20);
//uart_hexn(v);
// Lock the execution counter
unsigned int x = g_Drawer.x;
unsigned int y = g_Drawer.y;
g_Drawer.x = 0;
g_Drawer.y = 0;
if (lock_mutex(&exe_cnt_m, SCHED_PID) == 0) {
*(exe_cnt_m.addr) += 1;
write_cstring(&g_Drawer, "DendritOS", 0xDF0000);
write_cstring(&g_Drawer, " v", 0x00DF00);
write_cstring(&g_Drawer, os_info_v, 0x00DF00);
write_string(&g_Drawer, " #");
write_10(&g_Drawer, *(exe_cnt_m.addr));
release_mutex(&exe_cnt_m, SCHED_PID);
}
g_Drawer.x = x;
g_Drawer.y = y;
}
|