aboutsummaryrefslogtreecommitdiff
path: root/src/sys
diff options
context:
space:
mode:
authorChristian Cunningham <cc@localhost>2022-01-11 18:05:00 -0700
committerChristian Cunningham <cc@localhost>2022-01-11 18:05:00 -0700
commit5b3ceca69d5432f976ac487c63a75f8c6275028b (patch)
treec932890424d8e30ea61a7a406967f8d6e2daf39f /src/sys
parent516df5812ac64d87ac2e32ebf0211534ea0abaa7 (diff)
Memory freeing is optimized
Fixed Uart Bug temporarily
Diffstat (limited to 'src/sys')
-rw-r--r--src/sys/timer.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/sys/timer.c b/src/sys/timer.c
index d35ef83..4ccdf5d 100644
--- a/src/sys/timer.c
+++ b/src/sys/timer.c
@@ -8,9 +8,6 @@
#include <util/time.h>
#include <symbols.h>
-/// Cycles Per Second
-#define CPS 100
-
#define SYS_TIMER_C
static unsigned long exe_cnt = 0;
struct Mutex exe_cnt_m = {.addr = &exe_cnt, .pid = NULL_PID};