Andrew Sun
Andrew Sun
Arguments for doing this: - Casting sizeof() everywhere is ugly (counterpoint: maybe this means we should make a `#define isizeof(x) ((int)sizeof(x))` macro instead? - Improve standards conformance of libc string...
clang seems to insist on linking in the system libubsan even when we're compiling with -nostdlib. Current workaround is to link the final executable with `ld` instead of `cc` when...
Because I was lazy, pages obtained via sbrk are given out in increments of 4MB so that we didn't have to maintain page tables. However this is fairly inefficient (and...
Occurs with GCC only when LTO is disabled and using opt level O1 and above. ``` In file included from sb16.c:6: In function ‘list_add’, inlined from ‘wait_queue_add’ at wait.h:99:5, inlined...