Home
last modified time | relevance | path

Searched refs:process (Results 1 – 25 of 100) sorted by relevance

1234

/PHP-5.5/ext/standard/tests/general_functions/
H A Dbug34794.phpt9 echo "Opening process 1\n";
12 echo "Opening process 2\n";
16 echo "Closing process 1\n";
21 echo "Closing process 2\n";
30 Opening process 1
31 Opening process 2
32 Closing process 1
33 Closing process 2
H A Dbug39322.phpt2 Bug #39322 (proc_terminate() loosing process resource)
17 $process = proc_open('/bin/sleep 120', $descriptors, $pipes);
19 proc_terminate($process, 9);
20 sleep(1); // wait a bit to let the process finish
21 var_dump(proc_get_status($process));
/PHP-5.5/ext/pcntl/tests/
H A Dpcntl_fork_variation.phpt2 Test function pcntl_fork() by testing the process isolation in the forking hierarchy father -> son …
14 echo "*** Testing the process isolations between a process and its forks ***\n";
43 *** Testing the process isolations between a process and its forks ***
/PHP-5.5/sapi/cli/tests/
H A Dcli_process_title_windows.phpt12 // command "get-process" is executed using shell_exec, it overwrites the ConsoleTitle with
13 // "Windows PowerShell" and this title ONLY clears away when the php.exe process exits
35 echo "*** Testing setting the process title ***\n";
49 …$loaded_title = shell_exec("PowerShell -NoProfile \"get-process cmd*,powershell* | Select-Object m…
53 echo "Reading title using get-process failed\n";
68 echo "Successfully verified title using get-process\n";
70 echo "Actually loaded from get-process: $loaded_title\n";
80 *** Testing setting the process title ***
82 Successfully verified title using get-process
H A D009.phpt16 string(57) "Either execute direct code, process stdin or use a file.
18 string(57) "Either execute direct code, process stdin or use a file.
H A Dcli_process_title_unix.phpt10 echo "*** Testing setting the process title ***\n";
46 *** Testing setting the process title ***
/PHP-5.5/ext/fileinfo/tests/
H A Dmime_content_type_001.phpt18 Warning: mime_content_type(): Can only process string or stream arguments in %s on line %d
20 Warning: mime_content_type(): Can only process string or stream arguments in %s on line %d
22 Warning: mime_content_type(): Can only process string or stream arguments in %s on line %d
24 Warning: mime_content_type(): Can only process string or stream arguments in %s on line %d
/PHP-5.5/TSRM/
H A Dtsrm_win32.c45 globals->process = NULL; in tsrm_win32_ctor()
66 if (globals->process) { in tsrm_win32_dtor()
67 free(globals->process); in tsrm_win32_dtor()
389 for (ptr = TWG(process); ptr < (TWG(process) + TWG(process_size)); ptr++) { in process_get()
404 TWG(process) = newptr; in process_get()
462 PROCESS_INFORMATION process; in popen_ex() local
553 CloseHandle(process.hThread); in popen_ex()
573 process_pair *process; in pclose() local
580 fflush(process->stream); in pclose()
581 fclose(process->stream); in pclose()
[all …]
/PHP-5.5/sapi/litespeed/
H A DREADME120 start one PHP process, this process will start/stop children PHP processes
135 and start children process on demand to save system resource. This is
138 process. This might be preferred in a dedicate hosting environment.
153 This controls how many requests each child process will handle before
171 will be killed by the parent process immediately.
180 processing time allowed when processing a request. If a child process
183 of dead or runaway child process.
189 process will wait before exiting when there is no child process.
191 process.
199 to disable this feature, such as when a LSAPI process was started
[all …]
/PHP-5.5/ext/posix/tests/
H A Dposix_getsid.phpt4 Get the current session id of a process pid (POSIX.1, 4.2.1)
18 echo "\n-- Testing posix_getsid() function with current process pid --\n";
26 -- Testing posix_getsid() function with current process pid --
H A Dposix_kill_basic.phpt14 // TODO Once we have PS open working beef up this test to create a process and kill it
37 string(%d) %s%rNo such process|Operation not permitted%r%s
/PHP-5.5/ext/standard/tests/streams/
H A Dbug61019.phpt14 $process=proc_open("echo testtext",$descriptorspec,$pipes);
15 if(is_resource($process))
29 $process_state=proc_get_status($process);
60 proc_close($process);
H A Dproc_open_bug51800_right.phpt37 $process = proc_open($cmd, $descriptors, $pipes);
39 if (is_resource($process))
50 $status = proc_close($process);
H A Dproc_open_bug51800_right2.phpt43 $process = proc_open($cmd, $descriptors, $pipes);
45 if (is_resource($process))
56 $status = proc_close($process);
H A Dbug64770.phpt28 echo "process timed out\n";
45 echo "no process\n";
H A Dbug60602.phpt28 echo "process timed out\n";
46 echo "no process\n";
H A Dproc_open_bug51800.phpt53 $process = proc_open($cmd, $descriptors, $pipes);
55 if (is_resource($process))
67 $status = proc_close($process);
H A Dproc_open_bug60120.phpt17 $process = proc_open($cmd, $descriptors, $pipes, getcwd(), array(), $options);
37 proc_terminate($process);
H A Dproc_open_bug64438.phpt17 $process = proc_open($cmd, $descriptors, $pipes, getcwd(), array(), $options);
37 proc_terminate($process);
/PHP-5.5/Zend/tests/
H A Dbug48408.phpt6 public function process($x){
18 $b->process($c->generate(0));
H A Dbug48409.phpt21 public function process($p)
36 $c->process($b->xyz($item['foo'], $i));
/PHP-5.5/sapi/cgi/
H A DREADME.FastCGI25 In this setup, PHP is started as a separate process entirely from the web
46 in order to talk to the PHP FastCGI process.
49 web server and PHP process, so that one cannot disrupt the other. It also
52 process if required!
62 PHP process as opposed to one per apache process means that shared resources
131 This controls how many child processes the PHP process spawns. When the
134 processes and main process will handle FastCGI requests by itself. Note that
135 this process may die (because of PHP_FCGI_MAX_REQUESTS) and it willnot
137 those will handle requests. The main process will restart children in case of
148 This controls how many requests each child process will handle before
[all …]
/PHP-5.5/sapi/fpm/
H A Dphp-fpm.conf.in77 ; process.max = 128
82 ; - The pool process will inherit the master process priority
85 ; process.priority = -19
91 ; Set open file descriptor rlimit for the master process.
95 ; Set max core size rlimit for the master process.
193 ; process.priority = -19
261 ; process manager - static, dynamic or ondemand;
281 ; process manager: static
309 ; The Full status returns for each process:
310 ; pid - the PID of the process;
[all …]
/PHP-5.5/ext/standard/tests/strings/
H A Dstrtok_variation7.phpt19 …strtok() when string being tokenised is prefixed with another string in between the process ***\n";
29 …strtok() when string being tokenised is suffixed with another string in between the process ***\n";
43 …ing strtok() when string being tokenised is prefixed with another string in between the process ***
76 …ing strtok() when string being tokenised is suffixed with another string in between the process ***
/PHP-5.5/ext/mysql/tests/
H A Dmysql_list_processes.phpt24 printf("[003] Empty process list? [%d] %s\n", mysql_errno($link), mysql_error($link));
38 printf("[006] Empty process list? [%d] %s\n", mysql_errno(), mysql_error());

Completed in 28 milliseconds

1234