summaryrefslogtreecommitdiffstats
path: root/pts-core/functions/pts-functions_modules.php
diff options
context:
space:
mode:
authorMichael Larabel <michael@phx-laptop.(none)>2008-09-13 09:41:52 -0400
committerMichael Larabel <michael@phx-laptop.(none)>2008-09-13 09:41:52 -0400
commit5fa124f50ab95cd2152e646f5ed2d4b17ce959ae (patch)
tree75645bc6103dc00c992a3f00d3a166e416ebcc6e /pts-core/functions/pts-functions_modules.php
parentdbaf54991614899e817af6a6edbe250c2870056b (diff)
downloadphoronix-test-suite-upstream-5fa124f50ab95cd2152e646f5ed2d4b17ce959ae.tar.gz
phoronix-test-suite-upstream-5fa124f50ab95cd2152e646f5ed2d4b17ce959ae.tar.xz
phoronix-test-suite-upstream-5fa124f50ab95cd2152e646f5ed2d4b17ce959ae.zip
pts-core: PTS_EXIT -> PTS_QUIT module type
Diffstat (limited to 'pts-core/functions/pts-functions_modules.php')
-rw-r--r--pts-core/functions/pts-functions_modules.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/pts-core/functions/pts-functions_modules.php b/pts-core/functions/pts-functions_modules.php
index d0a4308..b992d70 100644
--- a/pts-core/functions/pts-functions_modules.php
+++ b/pts-core/functions/pts-functions_modules.php
@@ -24,7 +24,7 @@
// PTS Module Return Types
define("PTS_MODULE_UNLOAD", "PTS_MODULE_UNLOAD");
-define("PTS_EXIT", "PTS_EXIT");
+define("PTS_QUIT", "PTS_QUIT");
function pts_module_start_process()
{
@@ -173,7 +173,7 @@ function pts_module_process($process)
// Unload the PTS module
unset($GLOBALS["PTS_MODULES"][$module_index]);
break;
- case PTS_EXIT:
+ case PTS_QUIT:
// Stop the Phoronix Test Suite immediately
pts_exit();
break;