Page MenuHomec4science

PhutilHangForeverDaemon.php
No OneTemporary

File Metadata

Created
Sat, Apr 19, 12:43

PhutilHangForeverDaemon.php

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

Event Timeline