summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoe Watkins <krakjoe@php.net>2019-06-11 09:06:48 +0200
committerJoe Watkins <krakjoe@php.net>2019-06-11 09:06:48 +0200
commit6c195fb846082e0e7652c04a47364f410b1b6dee (patch)
tree299c73164e67bb0ed019199a9273406cfe17bafd
parent0542eb5bd5e41fb48aac2232e8408ff47ac8afe5 (diff)
parentb921564a35ec27b516bf2b36463a4143e450b230 (diff)
downloadphp-git-6c195fb846082e0e7652c04a47364f410b1b6dee.tar.gz
Merge branch 'PHP-7.4'
* PHP-7.4: Clean up opcache func flags for set_socket_blocking
-rw-r--r--ext/opcache/Optimizer/zend_func_info.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/ext/opcache/Optimizer/zend_func_info.c b/ext/opcache/Optimizer/zend_func_info.c
index 146d7d1a1f..ace1075f91 100644
--- a/ext/opcache/Optimizer/zend_func_info.c
+++ b/ext/opcache/Optimizer/zend_func_info.c
@@ -541,7 +541,6 @@ static const func_info_t func_infos[] = {
F0("stream_set_write_buffer", MAY_BE_FALSE | MAY_BE_LONG),
F0("set_file_buffer", MAY_BE_FALSE | MAY_BE_LONG),
F0("stream_set_chunk_size", MAY_BE_FALSE | MAY_BE_LONG),
- F0("set_socket_blocking", MAY_BE_FALSE | MAY_BE_TRUE),
F0("stream_set_blocking", MAY_BE_FALSE | MAY_BE_TRUE),
F0("socket_set_blocking", MAY_BE_FALSE | MAY_BE_TRUE),
F1("stream_get_meta_data", MAY_BE_FALSE | MAY_BE_ARRAY | MAY_BE_ARRAY_KEY_STRING | MAY_BE_ARRAY_OF_ANY),