Orycterope

Results 19 issues of Orycterope

Parsing the [hhea table](https://developer.apple.com/fonts/TrueType-Reference-Manual/RM06/Chap6hhea.html), to get some general information about the font : * MaxAscent * MaxDescent * LineGap * AdvanceWidthMax As I understand it, this is needed to get...

The [windows implementation of boot_time](https://github.com/heim-rs/heim/blob/b292f1535bb27c03800cdb7509fa81a40859fbbb/heim-host/src/sys/windows/boot_time.rs) is wrong: it gets the current time, converts windows epoch to unix epoch, but never actually subtracts the boot time of the machine. Here's a...

We really need a UserspacePtr that checks address can be deref'd. #102 Here's my first attempt at an implementation, please give me your comments: ### Jobs The UserspacePtr is expected...

status-research
project-kernel

The kernel must bzero every page that it gives to userspace, to prevent leaking data from a process to another. Unfortunately this implies a lot of overhead. We should find...

type-feature
project-kernel
safety

Our documentation code snippets are not compiled, nor tested. According to an [old rust book](https://doc.rust-lang.org/1.30.0/book/first-edition/documentation.html#running-documentation-tests) documentation is only checked for libraries, but not binaries. We should fix this, as documentation...

infra

Write a proper README.md Comment for what you want to see appear in it

good first issue
status-research

`display_bsod` internally calls the `map_framebuffer` syscall to map the framebuffer, because we . were lazy and didn't want to duplicate code. However this syscall retrieves the current process to map...

type-bug
good first issue
project-kernel

Don't load an arm ELF on i386 👀 Don't load a 64-bit ELF on i386 👀

type-bug
good first issue
project-kernel