Lines Matching defs:child
37 simple_child_t *child = NULL;
42 apr_hash_this(hi, NULL, NULL, (void **)&child);
43 apr_hash_set(sc->children, &child->pid, sizeof(child->pid), NULL);
47 if (child != NULL) {
48 kill(child->pid, 9);
49 /* TODO: recycle child object */
82 /* this is the child process */
101 simple_child_t *child;
105 child = apr_palloc(sc->pool, sizeof(simple_child_t));
106 child->pid = pid;
107 apr_hash_set(sc->children, &child->pid, sizeof(child->pid), child);
128 /* This is kinda of hack, but rather than spawning a child process,