You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use isolate's cg-oom-killed to detect "memory limit exceeded" conditions (#1471)
* Add separate "memory limit exceeded" message
* make test suite check for memory limit exceeded
* fix "memory limit exceeded" behavior in php
PHP has a memory_limit setting that limits the amount of memory the
interpreter even tries to allocate; this limit is 128M by default.
Exceeding this causes PHP to exit with code 255 (and print a message on
stdout).
This commit changes the limit to infinity, and lets isolate's memory
limit handle it instead. This gives the correct feedback to contestants.
0 commit comments