Redefined the priority constants (to have space for future expansions)

This commit is contained in:
Michael Vogel 2016-08-08 22:11:24 +02:00
parent d138b11868
commit 5dff8db751
1 changed files with 4 additions and 4 deletions

View File

@ -392,11 +392,11 @@ define ( 'GRAVITY_COMMENT', 6);
* Process priority for the worker
* @{
*/
define('PRIORITY_SYSTEM', -1);
define('PRIORITY_UNDEFINED', 0);
define('PRIORITY_HIGH', 1);
define('PRIORITY_MEDIUM', 2);
define('PRIORITY_LOW', 3);
define('PRIORITY_SYSTEM', 10);
define('PRIORITY_HIGH', 20);
define('PRIORITY_MEDIUM', 30);
define('PRIORITY_LOW', 40);
/* @}*/