Compare commits

...

5 commits

Author SHA1 Message Date
Imbus
0e598b7ee0 Readme: add section about todo 2025-09-02 02:51:50 +02:00
Imbus
9790807355 Todo 2025-09-02 02:51:34 +02:00
Imbus
8839f06fd2 Formatting 2025-09-02 02:47:51 +02:00
Imbus
7ba7b9cc63 Format will now only check kern 2025-09-02 02:47:47 +02:00
Imbus
68f3353fbd Bug: fix incorrect reference level 2025-09-02 02:44:21 +02:00
5 changed files with 7 additions and 4 deletions

View file

@ -82,7 +82,7 @@ clean:
find . -type f -name '*.[od(elf)]' -exec rm -f {} +
format:
find . -type f -name '*.[ch]' -exec clang-format -i {} +
find kern -type f -name '*.[ch]' -exec clang-format -i {} \;
TOOLCHAIN_DIR := toolchain

View file

@ -75,6 +75,9 @@ make distclean # Wipes the above, but also removes toolchain
| `mip` | Machine Interrupt Pending | Machine | Indicates pending interrupts. |
| `mie` | Machine Interrupt Enable | Machine | Controls which interrupts are enabled. |
### TODO
- Kassert, some macro in the form of `ASSERT(condition, "This went wrong")`
### Libc Implementations
[uClibc](https://uclibc.org/)

View file

@ -46,6 +46,7 @@ void kfree(void *pa) {
if (((u64)pa % PGSIZE) != 0 || (char *)pa < kernel_end || (u64)pa >= PHYSTOP)
PANIC("kfree");
// TODO: Kconfig this
// Fill with junk to catch dangling refs.
memset(pa, 1, PGSIZE);

View file

@ -6,4 +6,3 @@
#endif
#endif // STDDEF_H

View file

@ -22,7 +22,7 @@ static int stdout_puts(char *s, int len, void *unused) {
int kprintf(const char *restrict fmt, ...) {
va_list ap;
va_start(ap, fmt);
int ret = kvprintf(fmt, &ap);
int ret = kvprintf(fmt, ap);
va_end(ap);
return ret;
}