Searched defs:process (Results 1 - 10 of 10) sorted by relevance

/httpd/docs/log-message-tags/
H A Dupdate-log-msg-tags17 process($file);
30 sub process subroutine
/httpd/server/
H A Dmain.c92 printf("yes (variable process count)\n");
95 printf("yes (fixed process count)\n");
265 static void destroy_and_exit_process(process_rec *process, argument
271 * process their input. Otherwise it is possible that they get killed
279 const char *name = process->short_name ? process->short_name : "httpd";
283 apr_pool_destroy(process->pool); /* and destroy all descendent pools */
300 process_rec *process; local
331 apr_pool_tag(cntx, "process");
336 * of this server process
350 usage(process_rec *process) argument
468 process_rec *process; local
[all...]
H A Dlisten.c292 static int find_systemd_socket(process_rec * process, apr_port_t port) argument
298 ap_log_perror(APLOG_MARK, APLOG_CRIT, sdc, process->pool, APLOGNO(02486)
305 ap_log_perror(APLOG_MARK, APLOG_CRIT, sdc, process->pool, APLOGNO(02487)
320 static apr_status_t alloc_systemd_listener(process_rec * process, argument
337 ap_log_perror(APLOG_MARK, APLOG_CRIT, rv, process->pool, APLOGNO(02489)
348 rec = apr_palloc(process->pool, sizeof(ap_listen_rec));
352 rv = apr_os_sock_make(&rec->sd, &si, process->pool);
354 ap_log_perror(APLOG_MARK, APLOG_CRIT, rv, process->pool, APLOGNO(02490)
361 ap_log_perror(APLOG_MARK, APLOG_CRIT, rv, process->pool, APLOGNO(02491)
366 rec->protocol = apr_pstrdup(process
373 set_systemd_listener(process_rec *process, apr_port_t port, const char *proto) argument
407 alloc_listener(process_rec *process, char *addr, apr_port_t port, const char* proto, void *slave) argument
[all...]
H A Dmpm_unix.c24 * specific to multi-process servers, but NOT to Unix. Which is why it
108 /* we don't know about any such process */
141 "child process %" APR_PID_T_FMT
151 "child process %" APR_PID_T_FMT
166 "could not make child process %" APR_PID_T_FMT
313 * the pid is a member of the current process group; either using
362 "process group", sig, (long)pid);
853 void ap_mpm_rewrite_args(process_rec *process) argument
861 mpm_new_argv = apr_array_make(process->pool, process
[all...]
H A Dlog.c45 #include <process.h> /* for getpid() on Win32 */
104 /* track pipe handles to close in child process */
121 /** The pipe between the server and the logging process */
124 /** The name of the program the logging process is running */
126 /** The pid of the logging process */
143 /* remember to close this handle in the child process
146 * take the parent process's child procs.
241 /* Create a child process running PROGNAME with a pipe connected to
250 /* Child process code for 'ErrorLog "|..."';
328 "Couldn't start ErrorLog process '
1467 process_rec *process = s->process; local
[all...]
H A Dconfig.c753 AP_DECLARE(const char *) ap_setup_prelinked_modules(process_rec *process) argument
759 apr_hook_global_pool=process->pconf;
761 rebuild_conf_hash(process->pconf, 0);
776 ap_loaded_modules = (module **)apr_palloc(process->pool,
797 error = ap_add_module(*m, process->pconf, NULL);
1747 rebuild_conf_hash(s->process->pconf, 1);
1924 /* optimisation - if the filename isn't a wildcard, process it directly */
2187 s->process = main_server->process;
2314 static server_rec *init_server_config(process_rec *process, apr_pool_ argument
2391 ap_read_config(process_rec *process, apr_pool_t *ptemp, const char *filename, ap_directive_t **conftree) argument
2463 ap_run_rewrite_args(process_rec *process) argument
[all...]
/httpd/include/
H A Dhttp_config.h367 * @param The process that the server is running in.
369 void (*rewrite_args) (process_rec *process);
963 * @param process The process that is currently running the server
965 AP_DECLARE(const char *) ap_setup_prelinked_modules(process_rec *process); variable
987 * @param process The process running the server
993 AP_DECLARE(server_rec *) ap_read_config(process_rec *process,
1000 * @param process The process currentl
1002 AP_DECLARE(void) ap_run_rewrite_args(process_rec *process); variable
[all...]
H A Dhttpd.h315 * MPM child process exit status values
316 * The MPM parent process may check the status to see if special
333 * If a child exits with this error, the parent process
746 * given a request_rec r you can write r->connection->server->process
753 /** A structure that represents one process */
771 * @brief A structure that represents one process
1170 /** This points to the current thread being used to process this request,
1264 /** The process this server is running in */
1265 process_rec *process; member in struct:server_rec
1357 /* percentage of process/thread
[all...]
/httpd/server/mpm/netware/
H A Dmpm_netware.c289 * in the parent process, unless running in ONE_PROCESS mode
321 * Child process main loop.
463 /* If we got a new socket, set it to non-blocking mode and process
882 if (ap_run_pre_mpm(s->process->pool, SB_NOT_SHARED) != OK) {
1109 static void netware_rewrite_args(process_rec *process) argument
1124 /* Rewrite process->argv[];
1131 if (process->argc > 0) {
1132 char *s = apr_pstrdup (process->pconf, process->argv[0]);
1140 APR_FILEPATH_TRUENAME, process
[all...]
/httpd/server/mpm/winnt/
H A Dmpm_winnt.c161 * we use "events" instead. The parent apache process goes into a loop
168 * (where PID is the PID of the apache parent process). When one of these
178 * It can be called by any child or parent process, since it does not
310 if ((rv = apr_os_proc_mutex_put(child_start_mutex, &os_start, s->process->pool))
325 if ((rv = apr_os_shm_put(scoreboard_shm, &hScore, s->process->pool))
332 rv = ap_reopen_scoreboard(s->process->pool, scoreboard_shm, 1);
339 * process-local pointer arrays into the shared memory block.
430 * exclusively in the child process, receives them from the parent and
444 lr = apr_palloc(s->process->pool, sizeof(ap_listen_rec));
450 /* Open the pipe to the parent process t
990 winnt_rewrite_args(process_rec *process) argument
[all...]

Completed in 57 milliseconds