From e9418d9eb3de66dcd4dfc6641ed412f47e4afb97 Mon Sep 17 00:00:00 2001
From: Christian Cunningham <cc@localhost>
Date: Sat, 19 Mar 2022 17:32:10 -0700
Subject: Removed old comments

---
 src/sys/core.c     |  2 +-
 src/sys/schedule.c | 24 ------------------------
 2 files changed, 1 insertion(+), 25 deletions(-)

(limited to 'src/sys')

diff --git a/src/sys/core.c b/src/sys/core.c
index e94c86b..9099a82 100644
--- a/src/sys/core.c
+++ b/src/sys/core.c
@@ -20,7 +20,7 @@ void sysinit(void)
 	// Initialize System Globals
 	stimeh = *(unsigned long*)SYS_TIMER_CHI;
 	stimel = *(unsigned long*)SYS_TIMER_CLO;
-	*(unsigned long*) SYS_TIMER_C0 = 3000000 + stimeh; // 11 second trigger
+	*(unsigned long*) SYS_TIMER_C0 = 2000000 + stimeh; // 2 second trigger
 	uart_init();
 	///...
 
diff --git a/src/sys/schedule.c b/src/sys/schedule.c
index c3c549f..42a95b0 100644
--- a/src/sys/schedule.c
+++ b/src/sys/schedule.c
@@ -103,10 +103,6 @@ void prepend_thread_to_queue(struct Thread* t, unsigned char type, unsigned char
 		return;
 	}
 	prepend_to_queue(entry, queue);
-	//entry->next = queue->start.next;
-	//queue->start.next = entry;
-	//if (entry->next->entry_type == END_ENTRY)
-	//	queue->end.next = entry;
 }
 
 struct Entry* pop_thread_from_queue(unsigned char type, unsigned char priority)
@@ -123,28 +119,8 @@ struct Entry* pop_thread_from_queue(unsigned char type, unsigned char priority)
 		return entry;
 	}
 	return pop_from_queue(queue);
-	//if (queue->start.next->entry_type == END_ENTRY)
-	//	return entry;
-	//entry = queue->start.next;
-	//queue->start.next = entry->next;
-	//if (entry->next->entry_type == END_ENTRY)
-	//	queue->end.next = &queue->start;
-	//return entry;
 }
 
-//struct Entry* remove_next_from_queue(struct Entry* te)
-//{
-//	struct Entry* prev = te;
-//	struct Entry* remove = te->next;
-//	struct Entry* next = remove->next;
-//	if (remove->entry_type == END_ENTRY || remove->entry_type == START_ENTRY)
-//		return 0;
-//	prev->next = next;
-//	if (next->entry_type == END_ENTRY)
-//		next->next = prev;
-//	return remove;
-//}
-
 struct Entry* find_pid(unsigned long pid)
 {
 	for (unsigned char p = 0; p < PRIORITIES; p++) {
-- 
cgit v1.2.1