summaryrefslogtreecommitdiffstats
path: root/pts-core/objects/pts_module.php
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-08-05 18:12:10 -0400
committerMichael Larabel <michael@phx-laptop.(none)>2008-08-05 18:12:10 -0400
commitde5b3a1eba1ae33def77f991651fcd5642d2f7a7 (patch)
treee47504981aa97b90ca1848a153c26e8ffc41e381 /pts-core/objects/pts_module.php
parentebca53025ca1300ff5b1852eed189cf050ec3422 (diff)
downloadphoronix-test-suite-upstream-de5b3a1eba1ae33def77f991651fcd5642d2f7a7.tar.gz
phoronix-test-suite-upstream-de5b3a1eba1ae33def77f991651fcd5642d2f7a7.tar.xz
phoronix-test-suite-upstream-de5b3a1eba1ae33def77f991651fcd5642d2f7a7.zip
pts-core: More agressive timing (5 second interval lower threshold) on
pts_timed_function()
Diffstat (limited to 'pts-core/objects/pts_module.php')
-rw-r--r--pts-core/objects/pts_module.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/pts-core/objects/pts_module.php b/pts-core/objects/pts_module.php
index cfd5e38..1ba9eb1 100644
--- a/pts-core/objects/pts_module.php
+++ b/pts-core/objects/pts_module.php
@@ -96,7 +96,7 @@ class pts_module
}
public static function pts_timed_function($time, $function)
{
- if($time < 15 || $time > 300)
+ if($time <= 5 || $time > 300)
return;
if(function_exists("pcntl_fork"))