| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2024-07-06 | adjust stack handling | Kimplul | |
| 2024-07-04 | generalize orphants | Kimplul | |
| + Allow threads to make themselves become orphants | |||
| 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. | |||
