File tree Expand file tree Collapse file tree 4 files changed +0
-300
lines changed Expand file tree Collapse file tree 4 files changed +0
-300
lines changed Original file line number Diff line number Diff line change @@ -335,29 +335,6 @@ AC_DEFUN([PHP_FPM_KQUEUE],
335
335
] )
336
336
] )
337
337
338
- AC_DEFUN ( [ PHP_FPM_DEVPOLL] ,
339
- [
340
- AC_MSG_CHECKING ( [ for /dev/poll] )
341
-
342
- AC_COMPILE_IFELSE ( [ AC_LANG_PROGRAM ( [ [
343
- #include <stdio.h>
344
- #include <sys/devpoll.h>
345
- ] ] , [ [
346
- int n, dp;
347
- struct dvpoll dvp;
348
- dp = 0;
349
- dvp.dp_fds = NULL;
350
- dvp.dp_nfds = 0;
351
- dvp.dp_timeout = 0;
352
- n = ioctl(dp, DP_POLL, &dvp)
353
- ] ] ) ] , [
354
- AC_DEFINE ( [ HAVE_DEVPOLL] , 1 , [ do we have /dev/poll?] )
355
- AC_MSG_RESULT ( [ yes] )
356
- ] , [
357
- AC_MSG_RESULT ( [ no] )
358
- ] )
359
- ] )
360
-
361
338
AC_DEFUN ( [ PHP_FPM_EPOLL] ,
362
339
[
363
340
AC_MSG_CHECKING ( [ for epoll] )
@@ -624,7 +601,6 @@ if test "$PHP_FPM" != "no"; then
624
601
fpm/events/poll.c \
625
602
fpm/events/epoll.c \
626
603
fpm/events/kqueue.c \
627
- fpm/events/devpoll.c \
628
604
fpm/events/port.c \
629
605
"
630
606
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 23
23
#include "events/select.h"
24
24
#include "events/poll.h"
25
25
#include "events/epoll.h"
26
- #include "events/devpoll.h"
27
26
#include "events/port.h"
28
27
#include "events/kqueue.h"
29
28
@@ -279,14 +278,6 @@ int fpm_event_pre_init(char *mechanism) /* {{{ */
279
278
}
280
279
}
281
280
282
- /* /dev/poll */
283
- module = fpm_event_devpoll_module ();
284
- if (module ) {
285
- if (!mechanism || strcasecmp (module -> name , mechanism ) == 0 ) {
286
- return 0 ;
287
- }
288
- }
289
-
290
281
/* poll */
291
282
module = fpm_event_poll_module ();
292
283
if (module ) {
You can’t perform that action at this time.
0 commit comments