1
0
mirror of https://github.com/php/php-src.git synced 2026-03-25 08:42:29 +01:00
Files
archived-php-src/tests/basic/timeout_config.inc
2015-03-16 13:55:40 -07:00

12 lines
108 B
PHP

<?php
$t = 3;
function busy_wait($how_long)
{
$until = time() + $how_long;
while ($until > time());
}