Searched refs:proc_nice (Results 1 – 11 of 11) sorted by relevance
/PHP-5.3/ext/standard/tests/general_functions/ |
H A D | proc_nice_variation7.phpt | 2 Test function proc_nice() by substituting argument 1 with string values. 10 if(!function_exists('proc_nice')) die("skip. proc_nice not available "); 33 var_dump(proc_nice( $var ) ); 39 Warning: proc_nice() expects parameter 1 to be long, string given in %s on line %d 42 Warning: proc_nice() expects parameter 1 to be long, string given in %s on line %d 45 Warning: proc_nice() expects parameter 1 to be long, string given in %s on line %d 48 Warning: proc_nice() expects parameter 1 to be long, string given in %s on line %d
|
H A D | proc_nice_variation1.phpt | 2 Test function proc_nice() by substituting argument 1 with array values. 10 if(!function_exists('proc_nice')) die("skip. proc_nice not available "); 32 var_dump(proc_nice( $var ) ); 38 Warning: proc_nice() expects parameter 1 to be long, array given in %s on line %d 41 Warning: proc_nice() expects parameter 1 to be long, array given in %s on line %d 44 Warning: proc_nice() expects parameter 1 to be long, array given in %s on line %d 47 Warning: proc_nice() expects parameter 1 to be long, array given in %s on line %d
|
H A D | proc_nice_error.phpt | 2 Test function proc_nice() by calling it more than or less than its expected arguments 5 if(!function_exists('proc_nice')) die("skip. proc_nice not available "); 18 var_dump(proc_nice( $priority, $extra_arg ) ); 20 var_dump(proc_nice( ) );
|
H A D | proc_nice_variation3.phpt | 2 Test function proc_nice() by substituting argument 1 with emptyUnsetUndefNull values. 10 if(!function_exists('proc_nice')) die("skip. proc_nice not available "); 34 var_dump(proc_nice( $var ) ); 42 Warning: proc_nice() expects parameter 1 to be long, string given in %s on line %d 45 Warning: proc_nice() expects parameter 1 to be long, string given in %s on line %d
|
H A D | proc_nice_variation6.phpt | 2 Test function proc_nice() by substituting argument 1 with object values. 10 if(!function_exists('proc_nice')) die("skip. proc_nice not available "); 48 var_dump(proc_nice( $var ) ); 53 Error: 2 - proc_nice() expects parameter 1 to be long, object given, %s(%d) 55 Error: 2 - proc_nice() expects parameter 1 to be long, object given, %s(%d)
|
H A D | proc_nice_variation5.phpt | 2 Test function proc_nice() by substituting argument 1 with int values. 10 if(!function_exists('proc_nice')) die("skip. proc_nice not available "); 30 var_dump(proc_nice( $var ) ); 39 Warning: proc_nice(): Only a super user may attempt to increase the priority of a process in %s on …
|
H A D | proc_nice_basic.phpt | 2 proc_nice() basic behaviour 10 if(!function_exists('proc_nice')) die("skip. proc_nice not available "); 26 proc_nice($delta);
|
H A D | proc_nice_variation2.phpt | 2 Test function proc_nice() by substituting argument 1 with boolean values. 10 if(!function_exists('proc_nice')) die("skip. proc_nice not available "); 29 var_dump(proc_nice( $var ) );
|
/PHP-5.3/ext/standard/ |
H A D | exec.h | 34 PHP_FUNCTION(proc_nice);
|
H A D | exec.c | 514 PHP_FUNCTION(proc_nice) argument
|
H A D | basic_functions.c | 2833 PHP_FE(proc_nice, arginfo_proc_nice)
|
Completed in 35 milliseconds