f'd myself over of course, scheduler can now run user programs....

This commit is contained in:
2026-07-04 01:59:19 -05:00
parent 0b98ac0273
commit 17ccde3556
11 changed files with 109 additions and 60 deletions

View File

@@ -96,7 +96,7 @@ void * sbrk(intptr_t increment) {
if (increment == 0) {
return (void *)current_break;
}
}
uint32_t new_break = (uint32_t)((intptr_t)current_break + increment);
@@ -109,6 +109,6 @@ void * sbrk(intptr_t increment) {
return (void *)-1;
}
void exit(int status) {
void _exit(int status) {
_PDCLIB_exit(status);
}