Skip to content

Commit 68958b5

Browse files
committed
poll: add primary implementation and tests for objective polling
1 parent d4740ed commit 68958b5

File tree

51 files changed

+1250
-893
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+1250
-893
lines changed

configure.ac

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1701,6 +1701,7 @@ PHP_ADD_SOURCES([main/poll], m4_normalize([
17011701
poll_backend_poll.c
17021702
poll_core.c
17031703
poll_fd_table.c
1704+
poll_handle.c
17041705
]),
17051706
[-DZEND_ENABLE_STATIC_TSRMLS_CACHE=1])
17061707

ext/standard/basic_functions.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -303,7 +303,7 @@ PHP_MINIT_FUNCTION(basic) /* {{{ */
303303
BASIC_MINIT_SUBMODULE(browscap)
304304
BASIC_MINIT_SUBMODULE(standard_filters)
305305
BASIC_MINIT_SUBMODULE(user_filters)
306-
BASIC_MINIT_SUBMODULE(stream_poll)
306+
BASIC_MINIT_SUBMODULE(poll)
307307
BASIC_MINIT_SUBMODULE(password)
308308
BASIC_MINIT_SUBMODULE(image)
309309

ext/standard/basic_functions.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ PHP_MINFO_FUNCTION(basic);
4242

4343
ZEND_API void php_get_highlight_struct(zend_syntax_highlighter_ini *syntax_highlighter_ini);
4444

45-
PHP_MINIT_FUNCTION(stream_poll);
45+
PHP_MINIT_FUNCTION(poll);
4646
PHP_MINIT_FUNCTION(user_filters);
4747
PHP_RSHUTDOWN_FUNCTION(user_filters);
4848
PHP_RSHUTDOWN_FUNCTION(browscap);

0 commit comments

Comments
 (0)