Files
uce/site/tests/wasm-kill/loop.uce
T
2026-06-13 08:42:31 +00:00

11 lines
239 B
Plaintext

// W4 kill-test: runaway CPU. Epoch interruption traps it at the configured
// deadline; the worker stays healthy.
RENDER(Request& context)
{
print("about to loop\n");
volatile u64 i = 0;
while(i >= 0)
i++;
print("unreachable\n");
}