Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 441 Bytes

Notes.md

File metadata and controls

12 lines (9 loc) · 441 Bytes

Notes

On designing a userland

prior art

  • ioctl is a great example of exactly what not to do - every system call should be its own call. requiring the programmer to keep track of both syscalls and values to pass to ioctl is a pain.
  • kqueue is good