Searched refs:fpm_event_s (Results 1 – 16 of 16) sorted by relevance
/PHP-5.6/sapi/fpm/fpm/ |
H A D | fpm_events.h | 15 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 D | fpm_events.c | 39 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 D | fpm_process_ctl.h | 24 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 D | fpm_process_ctl.c | 52 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 D | fpm_systemd.c | 48 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 D | fpm_systemd.h | 9 void fpm_systemd_heartbeat(struct fpm_event_s *ev, short which, void *arg);
|
H A D | fpm_children.h | 26 struct fpm_event_s ev_stdout, ev_stderr;
|
H A D | fpm_worker_pool.h | 43 struct fpm_event_s *ondemand_event;
|
H A D | fpm_children.c | 438 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 D | fpm_stdio.c | 110 static void fpm_stdio_child_said(struct fpm_event_s *ev, short which, void *arg) /* {{{ */ 117 struct fpm_event_s *event;
|
/PHP-5.6/sapi/fpm/fpm/events/ |
H A D | kqueue.c | 37 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 D | port.c | 35 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 D | select.c | 40 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 D | epoll.c | 34 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 D | devpoll.c | 38 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 D | poll.c | 35 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 32 milliseconds