Page MenuHomec4science

PhutilHangForeverDaemon.php
No OneTemporary

File Metadata

Created
Thu, Jun 19, 17:51

PhutilHangForeverDaemon.php

<?php
/**
* Daemon which hangs immediately.
*/
final class PhutilHangForeverDaemon extends PhutilTortureTestDaemon {
protected function run() {
while (true) {
sleep(60);
}
}
}

Event Timeline