Skip to content

Commit

Permalink
update swoole version
Browse files Browse the repository at this point in the history
  • Loading branch information
jingjingxyk committed Jul 6, 2024
1 parent 89e0951 commit 70a5882
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ext/swoole
Submodule swoole updated 93 files
+0 −12 config.m4
+1 −1 examples/runtime/oci.php
+18 −0 examples/thread/map.php
+21 −0 examples/thread/nested_map.php
+1 −0 ext-src/php_swoole.cc
+4 −0 ext-src/php_swoole_cxx.h
+0 −4 ext-src/php_swoole_odbc.h
+0 −4 ext-src/php_swoole_oracle.h
+1 −0 ext-src/php_swoole_private.h
+0 −4 ext-src/php_swoole_sqlite.h
+81 −17 ext-src/php_swoole_thread.h
+0 −15 ext-src/stubs/php_swoole_coroutine_system.stub.php
+1 −16 ext-src/stubs/php_swoole_coroutine_system_arginfo.h
+1 −1 ext-src/stubs/php_swoole_thread.stub.php
+4 −3 ext-src/stubs/php_swoole_thread_arginfo.h
+2 −2 ext-src/stubs/php_swoole_thread_arraylist.stub.php
+4 −2 ext-src/stubs/php_swoole_thread_arraylist_arginfo.h
+0 −2 ext-src/stubs/php_swoole_thread_atomic.stub.php
+1 −6 ext-src/stubs/php_swoole_thread_atomic_arginfo.h
+7 −0 ext-src/stubs/php_swoole_thread_barrier.stub.php
+9 −0 ext-src/stubs/php_swoole_thread_barrier_arginfo.h
+0 −1 ext-src/stubs/php_swoole_thread_lock.stub.php
+1 −4 ext-src/stubs/php_swoole_thread_lock_arginfo.h
+3 −2 ext-src/stubs/php_swoole_thread_map.stub.php
+5 −2 ext-src/stubs/php_swoole_thread_map_arginfo.h
+0 −1 ext-src/stubs/php_swoole_thread_queue.stub.php
+1 −3 ext-src/stubs/php_swoole_thread_queue_arginfo.h
+1 −1 ext-src/swoole_channel_coro.cc
+0 −4 ext-src/swoole_coroutine.cc
+0 −212 ext-src/swoole_coroutine_system.cc
+1 −0 ext-src/swoole_http2_client_coro.cc
+1 −1 ext-src/swoole_http_client_coro.cc
+2 −2 ext-src/swoole_lock.cc
+2 −2 ext-src/swoole_name_resolver.cc
+14 −5 ext-src/swoole_pgsql.cc
+2 −2 ext-src/swoole_process.cc
+2 −2 ext-src/swoole_process_pool.cc
+12 −10 ext-src/swoole_server.cc
+1 −1 ext-src/swoole_socket_coro.cc
+2 −2 ext-src/swoole_table.cc
+217 −256 ext-src/swoole_thread.cc
+55 −42 ext-src/swoole_thread_arraylist.cc
+79 −84 ext-src/swoole_thread_atomic.cc
+149 −0 ext-src/swoole_thread_barrier.cc
+32 −44 ext-src/swoole_thread_lock.cc
+63 −46 ext-src/swoole_thread_map.cc
+31 −39 ext-src/swoole_thread_queue.cc
+1 −1 include/swoole.h
+19 −0 include/swoole_lock.h
+2 −7 include/swoole_server.h
+62 −30 package.xml
+1 −1 scripts/docker-compose.yml
+63 −0 src/lock/barrier.cc
+1 −6 src/server/manager.cc
+6 −26 src/server/master.cc
+1 −5 src/server/reactor_thread.cc
+2 −2 tests/include/api/curl_multi.php
+11 −7 tests/swoole_channel_coro/no_ctor.phpt
+3 −3 tests/swoole_coroutine/check.phpt
+2 −3 tests/swoole_coroutine/output/in_nested_co.phpt
+2 −2 tests/swoole_coroutine/output/ob_main.phpt
+0 −27 tests/swoole_coroutine_system/fread.phpt
+0 −35 tests/swoole_coroutine_system/fwrite.phpt
+6 −15 tests/swoole_coroutine_util/fgets.phpt
+4 −11 tests/swoole_coroutine_util/fread.phpt
+0 −26 tests/swoole_coroutine_util/fread_seek.phpt
+4 −11 tests/swoole_coroutine_util/fwrite.phpt
+2 −2 tests/swoole_curl/ssl/version.phpt
+13 −11 tests/swoole_global/channel_construct_check.phpt
+11 −10 tests/swoole_global/socket_construct_check.phpt
+11 −7 tests/swoole_http2_client_coro/connect_twice.phpt
+2 −2 tests/swoole_http_client_coro/http_proxy.phpt
+28 −0 tests/swoole_runtime/file_hook/fgets.phpt
+1 −1 tests/swoole_runtime/file_hook/fread.phpt
+45 −0 tests/swoole_thread/arraylist.phpt
+38 −0 tests/swoole_thread/barrier.phpt
+17 −0 tests/swoole_thread/empty_args.phpt
+39 −0 tests/swoole_thread/map.phpt
+0 −867 thirdparty/php80/pdo_oci/oci_driver.c
+0 −1,029 thirdparty/php80/pdo_oci/oci_statement.c
+0 −107 thirdparty/php80/pdo_oci/php_pdo_oci_int.h
+0 −485 thirdparty/php80/pdo_odbc/odbc_driver.c
+0 −895 thirdparty/php80/pdo_odbc/odbc_stmt.c
+0 −183 thirdparty/php80/pdo_odbc/php_pdo_odbc_int.h
+0 −1,275 thirdparty/php80/pdo_pgsql/pgsql_driver.c
+0 −71 thirdparty/php80/pdo_pgsql/pgsql_driver_arginfo.h
+0 −727 thirdparty/php80/pdo_pgsql/pgsql_statement.c
+0 −111 thirdparty/php80/pdo_pgsql/php_pdo_pgsql_int.h
+0 −80 thirdparty/php80/pdo_sqlite/php_pdo_sqlite_int.h
+0 −827 thirdparty/php80/pdo_sqlite/sqlite_driver.c
+0 −15 thirdparty/php80/pdo_sqlite/sqlite_driver.stub.php
+0 −34 thirdparty/php80/pdo_sqlite/sqlite_driver_arginfo.h
+0 −387 thirdparty/php80/pdo_sqlite/sqlite_statement.c

0 comments on commit 70a5882

Please sign in to comment.