| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-07-04 | add zombie and orphan threads | Kimplul | |
| + Should write this down somewhere but the idea is that when a process gets killed, it frees all the memory it can, making all threads within that process orphans. Orphaned threads are assigned to the init process, which will generally call exit() on each one. Zombie threads are threads that own some bit of shared data, and whose reference count is above zero. They may not be swapped to or called, even though they take up space in thread map and reserve their thread ID. | |||
| 2024-07-02 | enable irqs when we sleep or swap threads | Kimplul | |
| + Also swap checks if thread is running | |||
| 2024-06-01 | document sleep | Kimplul | |
| 2024-06-01 | add sleep syscall | Kimplul | |
| + Sets the current core to sleep | |||
| 2024-05-24 | rename common to src | Kimplul | |
| + I keep starting to type src and wondering why autocomplete won't work, I guess src is just uncounciously a better name | |||
