Page MenuHomec4science

PhutilHangForeverDaemon.php
No OneTemporary

File Metadata

Created
Fri, Feb 7, 01:18

PhutilHangForeverDaemon.php

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

Event Timeline