Home
last modified time | relevance | path

Searched refs:child (Results 1 – 25 of 138) sorted by last modified time

123456

/PHP-5.5/tests/classes/
H A Diterators_008.phpt2 Ensure plain userspace superclass does not override special iterator behaviour on child class.
H A Dctor_name_clash.phpt2 ZE2 The child class can re-use the parent class name for a function member
H A D__call_006.phpt38 echo "\n\n---> Invoke __call via scope resolution operator within child instance.\n";
67 ---> Invoke __call via scope resolution operator within child instance.
H A D__call_007.phpt38 echo "\n\n---> Invoke __call via scope resolution operator within child instance.\n";
66 ---> Invoke __call via scope resolution operator within child instance.
/PHP-5.5/sapi/litespeed/
H A DREADME153 This controls how many requests each child process will handle before
161 In Self Managed Mode, LSAPI_MAX_IDLE controls how long a idle child
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.
/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_php_trace.c46 pid_t pid = child->pid; in fpm_php_trace_dump()
138 void fpm_php_trace(struct fpm_child_s *child) /* {{{ */ in fpm_php_trace() argument
144 zlog(ZLOG_NOTICE, "about to trace %d", (int) child->pid); in fpm_php_trace()
146 slowlog = fopen(child->wp->config->slowlog, "a+"); in fpm_php_trace()
149 zlog(ZLOG_SYSERROR, "unable to open slowlog (%s)", child->wp->config->slowlog); in fpm_php_trace()
153 if (0 > fpm_trace_ready(child->pid)) { in fpm_php_trace()
157 if (0 > fpm_php_trace_dump(child, slowlog TSRMLS_CC)) { in fpm_php_trace()
161 if (0 > fpm_trace_close(child->pid)) { in fpm_php_trace()
169 fpm_pctl_kill(child->pid, FPM_PCTL_CONT); in fpm_php_trace()
170 child->tracer = 0; in fpm_php_trace()
[all …]
H A Dfpm_process_ctl.c152 struct fpm_child_s *child; in fpm_pctl_kill_all() local
154 for (child = wp->children; child; child = child->next) { in fpm_pctl_kill_all()
158 child->wp->config->name, signo, in fpm_pctl_kill_all()
299 struct fpm_child_s *child; in fpm_pctl_check_request_timeout() local
302 for (child = wp->children; child; child = child->next) { in fpm_pctl_check_request_timeout()
315 struct fpm_child_s *child; in fpm_pctl_perform_idle_server_maintenance() local
324 for (child = wp->children; child; child = child->next) { in fpm_pctl_perform_idle_server_maintenance()
327 last_idle_child = child; in fpm_pctl_perform_idle_server_maintenance()
330 last_idle_child = child; in fpm_pctl_perform_idle_server_maintenance()
499 struct fpm_child_s *child; in fpm_pctl_on_socket_accept() local
[all …]
H A Dfpm_request.c232 proc_p = fpm_scoreboard_proc_acquire(child->wp->scoreboard, child->scoreboard_i, 1); in fpm_request_check_timed_out()
242 if (child->slow_logged.tv_sec) { in fpm_request_check_timed_out()
244 child->slow_logged.tv_sec = 0; in fpm_request_check_timed_out()
245 child->slow_logged.tv_usec = 0; in fpm_request_check_timed_out()
262 child->slow_logged = proc.accepted; in fpm_request_check_timed_out()
263 child->tracer = fpm_php_trace; in fpm_request_check_timed_out()
265 fpm_trace_signal(child->pid); in fpm_request_check_timed_out()
268child->wp->config->name, (int) child->pid, purified_script_filename, proc.request_method, proc.req… in fpm_request_check_timed_out()
278child->wp->config->name, (int) child->pid, purified_script_filename, proc.request_method, proc.req… in fpm_request_check_timed_out()
290 proc = fpm_scoreboard_proc_get(child->wp->scoreboard, child->scoreboard_i); in fpm_request_is_idle()
[all …]
H A Dfpm_request.h18 void fpm_request_check_timed_out(struct fpm_child_s *child, struct timeval *tv, int terminate_timeo…
19 int fpm_request_is_idle(struct fpm_child_s *child);
21 int fpm_request_last_activity(struct fpm_child_s *child, struct timeval *tv);
H A Dfpm_stdio.c91 struct fpm_child_s *child; in fpm_stdio_child_said() local
105 event = &child->ev_stdout; in fpm_stdio_child_said()
107 event = &child->ev_stderr; in fpm_stdio_child_said()
127 close(child->fd_stdout); in fpm_stdio_child_said()
128 child->fd_stdout = -1; in fpm_stdio_child_said()
130 close(child->fd_stderr); in fpm_stdio_child_said()
131 child->fd_stderr = -1; in fpm_stdio_child_said()
222 child->fd_stdout = fd_stdout[0]; in fpm_stdio_parent_use_pipes()
223 child->fd_stderr = fd_stderr[0]; in fpm_stdio_parent_use_pipes()
225 fpm_event_set(&child->ev_stdout, child->fd_stdout, FPM_EV_READ, fpm_stdio_child_said, child); in fpm_stdio_parent_use_pipes()
[all …]
H A Dfpm_stdio.h13 int fpm_stdio_prepare_pipes(struct fpm_child_s *child);
14 void fpm_stdio_child_use_pipes(struct fpm_child_s *child);
15 int fpm_stdio_parent_use_pipes(struct fpm_child_s *child);
16 int fpm_stdio_discard_pipes(struct fpm_child_s *child);
H A Dfpm_children.c61 free(child); in fpm_child_free()
98 child->next->prev = child; in fpm_child_link()
111 child->prev->next = child->next; in fpm_child_unlink()
113 child->wp->children = child->next; in fpm_child_unlink()
117 child->next->prev = child->prev; in fpm_child_unlink()
129 for (child = wp->children; child; child = child->next) { in fpm_child_find()
138 if (!child) { in fpm_child_find()
168 for (; child; child = next) { in fpm_children_free()
197 if (child && child->idle_kill) { in fpm_children_bury()
229 if (child && child->tracer) { in fpm_children_bury()
[all …]
H A Dfpm_children.h15 int fpm_children_free(struct fpm_child_s *child);
/PHP-5.5/sapi/fpm/
H A Dphp-fpm.conf.in52 ; If this number of child processes exit with SIGSEGV or SIGBUS within the time
66 ; Time limit for child processes to wait for a reaction on signals from master.
122 ; Multiple pools of child processes may be started with different listening
195 ; Choose how the process manager will control the number of child processes.
197 ; static - a fixed number (pm.max_children) of child processes;
198 ; dynamic - the number of child processes are set dynamically based on the
222 ; maximum number of child processes when pm is set to 'dynamic' or 'ondemand'.
232 ; The number of child processes created on startup.
252 ; The number of requests each child process should execute before respawning.
415 ; %p: PID of the child that serviced the request
[all …]
H A Dconfig.m4147 pid_t child;
150 if ( (child = fork()) ) { /* parent */
153 if (0 > ptrace(PTRACE_ATTACH, child, 0, 0)) {
157 waitpid(child, &status, 0);
167 if (0 > ptrace(PT_IO, child, (void *) &ptio, 0)) {
173 v2 = ptrace(PTRACE_PEEKDATA, child, (void *) &v1, 0);
179 ptrace(PTRACE_DETACH, child, (void *) 1, 0);
181 kill(child, SIGKILL);
185 else { /* child */
/PHP-5.5/sapi/cgi/
H A DREADME.FastCGI131 This controls how many child processes the PHP process spawns. When the
132 fastcgi starts, it creates a number of child processes which handle one
148 This controls how many requests each child process will handle before
/PHP-5.5/ext/xsl/
H A Dxsltprocessor.c264 zval *child; in xsl_ext_function_php() local
265 MAKE_STD_ZVAL(child); in xsl_ext_function_php()
288 child = php_dom_create_object(node, &ret, child, domintern TSRMLS_CC); in xsl_ext_function_php()
289 add_next_index_zval(args[i], child); in xsl_ext_function_php()
/PHP-5.5/ext/tidy/tests/
H A D010.phpt36 ["child"]=>
62 ["child"]=>
85 ["child"]=>
136 ["child"]=>
167 ["child"]=>
193 ["child"]=>
216 ["child"]=>
237 ["child"]=>
267 ["child"]=>
292 ["child"]=>
[all …]
H A D012.phpt55 ["child"]=>
76 ["child"]=>
100 ["child"]=>
128 ["child"]=>
148 ["child"]=>
273 ["child"]=>
312 ["child"]=>
332 ["child"]=>
412 ["child"]=>
432 ["child"]=>
[all …]
/PHP-5.5/ext/tidy/examples/
H A Ddumpit5.php84 foreach($node->child as $child) {
85 dump_tree($child, $indent + 3);
H A Durlgrab5.php27 foreach($node->child as $c) {
/PHP-5.5/ext/standard/tests/streams/
H A Dbug61019.phpt9 0 => array("pipe", "r"), // stdin is a pipe that the child will read from
10 1 => array("pipe", "w"), // stdout is a pipe that the child will write to
11 2 => array("pipe", "w") // stderr is a pipe that the child will write to
H A Dproc_open_bug51800.phpt17 so then the pipe buffer is emptied more often and the child has chance to continue its
/PHP-5.5/ext/standard/tests/dir/
H A Ddir_variation7.phpt27 * remove the execute permission from the parent dir and test dir() on child dir
37 |-> child_dir ( child dir)
H A Dopendir_variation5.phpt26 * remove the execute permission from the parent dir and test opendir() on child dir
36 * |-> child_dir ( child dir)

Completed in 39 milliseconds

123456