-
-
Notifications
You must be signed in to change notification settings - Fork 61
Open
Labels
Description
What I expected
The kernel virtualization layer should have killed or managed resources better.
What happened
A fork bomb causes a freeze.
Steps to reproduce
(Do not try this unless you're really sure!)
#include <stdlib.h>
#include <spawn.h>
char **environ;
int main(int argc, char *argv[])
{
while(1)
{
posix_spawn(NULL, argv[0], NULL, NULL, argv, environ);
}
}Environment
iPhone 14 Pro
iOS 26.2
Reactions are currently unavailable