feat(core): implement spinlocks, GC and keyboard safety
* Implemented Spinlocks and applied to VM/Scheduler * Added Garbage Collector for tasks * Moved Getchar to IOKeyboard with locking * Cleanup panic messages
This commit is contained in:
@@ -69,6 +69,7 @@ void render_list(Vector* numbers) {
|
||||
}
|
||||
|
||||
int main() {
|
||||
UInt64* bad_ptr = (UInt64*)0xDEADBEEF; *bad_ptr = 666;
|
||||
Vector nums;
|
||||
vector_init(&nums);
|
||||
printf("Heap test\n");
|
||||
|
||||
Reference in New Issue
Block a user