Home
last modified time | relevance | path

Searched refs:pid (Results 51 – 75 of 86) sorted by relevance

1234

/PHP-5.5/sapi/fpm/
H A Dphp-fpm.service.in7 PIDFile=@localstatedir@/run/php-fpm.pid
H A Dinit.d.php-fpm.in18 php_fpm_PID=@localstatedir@/run/php-fpm.pid
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_process_ctl.h22 int fpm_pctl_kill(pid_t pid, int how);
H A Dfpm_scoreboard.c247 void fpm_scoreboard_child_use(struct fpm_scoreboard_s *scoreboard, int child_index, pid_t pid) /* {… in fpm_scoreboard_child_use() argument
256 proc->pid = pid; in fpm_scoreboard_child_use()
H A Dfpm_unix.c280 pid_t pid = fork(); in fpm_unix_init_main() local
281 switch (pid) { in fpm_unix_init_main()
H A Dfpm_stdio.c167 …(int) child->pid, is_stdout ? "stdout" : "stderr", buf, is_last_message ? ", pipe is closed" : ""); in fpm_stdio_child_said()
H A Dfpm_status.c441 proc.pid, in fpm_status_handle_request()
/PHP-5.5/ext/posix/
H A Dposix.c61 ZEND_ARG_INFO(0, pid)
122 ZEND_ARG_INFO(0, pid)
128 ZEND_ARG_INFO(0, pid)
134 ZEND_ARG_INFO(0, pid)
396 long pid, sig; in PHP_FUNCTION() local
398 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ll", &pid, &sig) == FAILURE) { in PHP_FUNCTION()
402 if (kill(pid, sig) < 0) { in PHP_FUNCTION()
561 long pid, pgid; in PHP_FUNCTION() local
563 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "ll", &pid, &pgid) == FAILURE) { in PHP_FUNCTION()
567 if (setpgid(pid, pgid) < 0) { in PHP_FUNCTION()
/PHP-5.5/ext/standard/tests/http/
H A Dbug61548.phpt26 $pid = http_server('tcp://127.0.0.1:12342', $responses, $output);
32 http_server_kill($pid);
H A Dignore_errors.phpt20 $pid = http_server("tcp://127.0.0.1:12342", $responses, $output);
39 http_server_kill($pid);
H A Dbug38802.phpt22 $pid = http_server("tcp://127.0.0.1:12342", $responses, $output);
37 http_server_kill($pid);
/PHP-5.5/ext/pcntl/
H A Dpcntl.c57 ZEND_ARG_INFO(0, pid)
127 ZEND_ARG_INFO(0, pid)
135 ZEND_ARG_INFO(0, pid)
572 long pid, options = 0; in PHP_FUNCTION() local
584 child_id = waitpid((pid_t) pid, &status, options); in PHP_FUNCTION()
1109 long pid = getpid(); in PHP_FUNCTION() local
1112 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|ll", &pid, &who) == FAILURE) { in PHP_FUNCTION()
1119 pri = getpriority(who, pid); in PHP_FUNCTION()
1148 long pid = getpid(); in PHP_FUNCTION() local
1151 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "l|ll", &pri, &pid, &who) == FAILURE) { in PHP_FUNCTION()
[all …]
/PHP-5.5/ext/posix/tests/
H A Dposix_kill_variation2.phpt9 /* Prototype : proto bool posix_kill(int pid, int sig)
18 $pid = -999;
73 var_dump( posix_kill($pid, $value) );
H A Dposix_kill_variation1.phpt9 /* Prototype : proto bool posix_kill(int pid, int sig)
69 // loop through each element of the array for pid
/PHP-5.5/ext/standard/tests/general_functions/
H A Dbug39322.phpt30 ["pid"]=>
/PHP-5.5/ext/oci8/tests/
H A Dlob_null.phpt22 'create or replace procedure lob_null_proc_in (pid in number, pdata in CLOB)
24 insert into lob_null_tab (id, data) values (pid, pdata);
29 'create or replace procedure lob_null_proc_out (pid in number, pdata out clob)
31 select data into pdata from lob_null_tab where id = pid;
/PHP-5.5/sapi/fpm/tests/
H A D003.phpt44 string(%d) "[%d-%s-%d %d:%d:%d] NOTICE: fpm is running, pid %d
/PHP-5.5/ext/fileinfo/libmagic/
H A Dcompress.c391 pid_t pid; in uncompressbuf() local
405 switch (pid = fork()) { in uncompressbuf()
496 while (waitpid(pid, NULL, WNOHANG) != -1) in uncompressbuf()
/PHP-5.5/sapi/litespeed/
H A Dlsapilib.c2440 int pid; in LSAPI_Init_Prefork_Server() local
2458 pid = getpid(); in LSAPI_Init_Prefork_Server()
2459 setpgid( pid, pid ); in LSAPI_Init_Prefork_Server()
2524 if ( pStatus->m_pid == pid ) in find_child_status()
2539 int status, pid; in lsapi_sigchild() local
2544 if ( pid <= 0 ) in lsapi_sigchild()
2556 pid = 0; in lsapi_sigchild()
2718 int pid; in lsapi_prefork_server_accept() local
2824 pid = fork(); in lsapi_prefork_server_accept()
2826 if ( !pid ) in lsapi_prefork_server_accept()
[all …]
H A Dlsapi_main.c949 pid_t pid; in start_children() local
967 pid = fork(); in start_children()
968 switch( pid ) { in start_children()
989 pid = wait( &status ); in start_children()
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_debug_mysqlnd_control_string.phpt77 if (false === ($pid = getmypid()))
78 $pid = "[\d]+";
81 if (!preg_match("@^" . $pid . "*@ismU", $trace))
/PHP-5.5/ext/ftp/tests/
H A Dserver.inc24 $pid = pcntl_fork();
31 $pid = pcntl_fork();
32 if($pid === 0){
60 if ($pid) {
/PHP-5.5/sapi/cli/tests/
H A Dcli_process_title_windows.phpt38 $pid = getmypid();
/PHP-5.5/ext/mysqlnd/
H A Dmysqlnd_debug.c87 snprintf(pid_buffer, sizeof(pid_buffer) - 1, "%5u: ", self->pid); in MYSQLND_METHOD()
185 snprintf(pid_buffer, sizeof(pid_buffer) - 1, "%5u: ", self->pid); in MYSQLND_METHOD()
732 ret->pid = getpid(); in mysqlnd_debug_init()
H A Dmysqlnd_debug.h53 int pid; member

Completed in 58 milliseconds

1234