Home
last modified time | relevance | path

Searched refs:fpm_event_s (Results 1 – 16 of 16) sorted by relevance

/PHP-5.5/sapi/fpm/fpm/
H A Dfpm_events.h15 struct fpm_event_s { struct
19 void (*callback)(struct fpm_event_s *, short, void *); argument
29 struct fpm_event_s *ev; argument
38 int (*add)(struct fpm_event_s *ev);
39 int (*remove)(struct fpm_event_s *ev);
43 void fpm_event_fire(struct fpm_event_s *ev);
45 int fpm_event_set(struct fpm_event_s *ev, int fd, int flags, void (*callback)(struct fpm_event_s *,…
46 int fpm_event_add(struct fpm_event_s *ev, unsigned long int timeout);
47 int fpm_event_del(struct fpm_event_s *ev);
H A Dfpm_events.c39 static void fpm_got_signal(struct fpm_event_s *ev, short which, void *arg);
40 static struct fpm_event_s *fpm_event_queue_isset(struct fpm_event_queue_s *queue, struct fpm_event_…
56 static void fpm_got_signal(struct fpm_event_s *ev, short which, void *arg) /* {{{ */ in fpm_got_signal()
126 static struct fpm_event_s *fpm_event_queue_isset(struct fpm_event_queue_s *queue, struct fpm_event_… in fpm_event_queue_isset()
348 static struct fpm_event_s signal_fd_event; in fpm_event_loop()
461 void fpm_event_fire(struct fpm_event_s *ev) /* {{{ */ in fpm_event_fire()
467 (*ev->callback)( (struct fpm_event_s *) ev, ev->which, ev->arg); in fpm_event_fire()
471 int fpm_event_set(struct fpm_event_s *ev, int fd, int flags, void (*callback)(struct fpm_event_s *,… in fpm_event_set() argument
476 memset(ev, 0, sizeof(struct fpm_event_s)); in fpm_event_set()
485 int fpm_event_add(struct fpm_event_s *ev, unsigned long int frequency) /* {{{ */ in fpm_event_add()
[all …]
H A Dfpm_process_ctl.h24 void fpm_pctl_heartbeat(struct fpm_event_s *ev, short which, void *arg);
25 void fpm_pctl_perform_idle_server_maintenance_heartbeat(struct fpm_event_s *ev, short which, void *…
26 void fpm_pctl_on_socket_accept(struct fpm_event_s *ev, short which, void *arg);
H A Dfpm_process_ctl.c52 static struct fpm_event_s pctl_event;
54 static void fpm_pctl_action(struct fpm_event_s *ev, short which, void *arg) /* {{{ */ in fpm_pctl_action()
441 void fpm_pctl_heartbeat(struct fpm_event_s *ev, short which, void *arg) /* {{{ */ in fpm_pctl_heartbeat()
443 static struct fpm_event_s heartbeat; in fpm_pctl_heartbeat()
466 void fpm_pctl_perform_idle_server_maintenance_heartbeat(struct fpm_event_s *ev, short which, void *… in fpm_pctl_perform_idle_server_maintenance_heartbeat()
468 static struct fpm_event_s heartbeat; in fpm_pctl_perform_idle_server_maintenance_heartbeat()
496 void fpm_pctl_on_socket_accept(struct fpm_event_s *ev, short which, void *arg) /* {{{ */ in fpm_pctl_on_socket_accept()
H A Dfpm_systemd.c48 void fpm_systemd_heartbeat(struct fpm_event_s *ev, short which, void *arg) /* {{{ */ in fpm_systemd_heartbeat()
50 static struct fpm_event_s heartbeat; in fpm_systemd_heartbeat()
H A Dfpm_systemd.h9 void fpm_systemd_heartbeat(struct fpm_event_s *ev, short which, void *arg);
H A Dfpm_children.h26 struct fpm_event_s ev_stdout, ev_stderr;
H A Dfpm_worker_pool.h43 struct fpm_event_s *ondemand_event;
H A Dfpm_children.c438 wp->ondemand_event = (struct fpm_event_s *)malloc(sizeof(struct fpm_event_s)); in fpm_children_create_initial()
446 memset(wp->ondemand_event, 0, sizeof(struct fpm_event_s)); in fpm_children_create_initial()
H A Dfpm_stdio.c86 static void fpm_stdio_child_said(struct fpm_event_s *ev, short which, void *arg) /* {{{ */ in fpm_stdio_child_said()
93 struct fpm_event_s *event; in fpm_stdio_child_said()
/PHP-5.5/sapi/fpm/fpm/events/
H A Dkqueue.c37 static int fpm_event_kqueue_add(struct fpm_event_s *ev);
38 static int fpm_event_kqueue_remove(struct fpm_event_s *ev);
145 struct fpm_event_s *ev = (struct fpm_event_s *)kevents[i].udata; in fpm_event_kqueue_wait()
161 static int fpm_event_kqueue_add(struct fpm_event_s *ev) /* {{{ */ in fpm_event_kqueue_add()
186 static int fpm_event_kqueue_remove(struct fpm_event_s *ev) /* {{{ */ in fpm_event_kqueue_remove()
H A Dport.c35 static int fpm_event_port_add(struct fpm_event_s *ev);
36 static int fpm_event_port_remove(struct fpm_event_s *ev);
146 fpm_event_fire((struct fpm_event_s *)events[i].portev_user); in fpm_event_port_wait()
160 static int fpm_event_port_add(struct fpm_event_s *ev) /* {{{ */ in fpm_event_port_add()
174 static int fpm_event_port_remove(struct fpm_event_s *ev) /* {{{ */ in fpm_event_port_remove()
H A Dselect.c40 static int fpm_event_select_add(struct fpm_event_s *ev);
41 static int fpm_event_select_remove(struct fpm_event_s *ev);
142 static int fpm_event_select_add(struct fpm_event_s *ev) /* {{{ */ in fpm_event_select_add()
163 static int fpm_event_select_remove(struct fpm_event_s *ev) /* {{{ */ in fpm_event_select_remove()
H A Depoll.c34 static int fpm_event_epoll_add(struct fpm_event_s *ev);
35 static int fpm_event_epoll_remove(struct fpm_event_s *ev);
147 fpm_event_fire((struct fpm_event_s *)epollfds[i].data.ptr); in fpm_event_epoll_wait()
162 static int fpm_event_epoll_add(struct fpm_event_s *ev) /* {{{ */ in fpm_event_epoll_add()
190 static int fpm_event_epoll_remove(struct fpm_event_s *ev) /* {{{ */ in fpm_event_epoll_remove()
H A Ddevpoll.c38 static int fpm_event_devpoll_add(struct fpm_event_s *ev);
39 static int fpm_event_devpoll_remove(struct fpm_event_s *ev);
201 static int fpm_event_devpoll_add(struct fpm_event_s *ev) /* {{{ */ in fpm_event_devpoll_add()
226 static int fpm_event_devpoll_remove(struct fpm_event_s *ev) /* {{{ */ in fpm_event_devpoll_remove()
H A Dpoll.c35 static int fpm_event_poll_add(struct fpm_event_s *ev);
36 static int fpm_event_poll_remove(struct fpm_event_s *ev);
186 static int fpm_event_poll_add(struct fpm_event_s *ev) /* {{{ */ in fpm_event_poll_add()
231 static int fpm_event_poll_remove(struct fpm_event_s *ev) /* {{{ */ in fpm_event_poll_remove()

Completed in 60 milliseconds