Searched refs:proc_nice (Results 1 – 13 of 13) sorted by relevance
/PHP-7.3/ext/standard/tests/general_functions/ |
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 "); 15 var_dump(proc_nice( $priority, $extra_arg) ); 17 var_dump(proc_nice( ) ); 24 Warning: proc_nice() expects exactly 1 parameter, 2 given in %s line %d 27 Warning: proc_nice() expects exactly 1 parameter, 0 given in %s line %d
|
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 int, string given in %s on line %d 42 Warning: proc_nice() expects parameter 1 to be int, string given in %s on line %d 45 Warning: proc_nice() expects parameter 1 to be int, string given in %s on line %d 48 Warning: proc_nice() expects parameter 1 to be int, 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 int, array given in %s on line %d 41 Warning: proc_nice() expects parameter 1 to be int, array given in %s on line %d 44 Warning: proc_nice() expects parameter 1 to be int, array given in %s on line %d 47 Warning: proc_nice() expects parameter 1 to be int, array given in %s on line %d
|
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 int, string given in %s on line %d 45 Warning: proc_nice() expects parameter 1 to be int, 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 int, object given, %s(%d) 55 Error: 2 - proc_nice() expects parameter 1 to be int, 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 "); 31 var_dump(proc_nice( $var ) ); 40 Warning: proc_nice(): Only a super user may attempt to increase the priority of a process in %s on …
|
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 ) );
|
H A D | proc_nice_basic.phpt | 2 proc_nice() basic behaviour 10 if(!function_exists('proc_nice')) die("skip. proc_nice not available "); 27 proc_nice($delta);
|
H A D | proc_nice_basic-win.phpt | 2 proc_nice() basic behaviour 5 /* No function_exists() check, proc_nice() is always available on Windows */ 72 /* '<verbose name>' => ['<wmic value>', '<proc_nice value>'] */ 84 proc_nice($data[1]);
|
/PHP-7.3/ext/standard/ |
H A D | exec.h | 32 PHP_FUNCTION(proc_nice);
|
H A D | exec.c | 571 PHP_FUNCTION(proc_nice) argument
|
H A D | basic_functions.c | 2891 PHP_FE(proc_nice, arginfo_proc_nice)
|
/PHP-7.3/ |
H A D | NEWS | 2373 . Implemented FR #49806 (proc_nice() for Windows). (Kalle)
|
Completed in 31 milliseconds