-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into remove_todo_test_done
- Loading branch information
Showing
10 changed files
with
91 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule aws-c-auth
updated
10 files
Submodule aws-c-cal
updated
6 files
Submodule aws-c-common
updated
20 files
+10 −10 | CMakeLists.txt | |
+1 −1 | README.md | |
+14 −0 | bin/system_info/print_system_info.c | |
+13 −0 | cmake/AwsFeatureTests.cmake | |
+73 −24 | cmake/AwsSIMD.cmake | |
+64 −16 | include/aws/common/atomics_msvc.inl | |
+7 −0 | include/aws/common/config.h.in | |
+2 −0 | include/aws/common/cpuid.h | |
+5 −2 | include/aws/common/date_time.h | |
+1 −1 | include/aws/common/package.h | |
+7 −1 | source/arch/arm/auxv/cpuid.c | |
+40 −0 | source/arch/arm/darwin/cpuid.c | |
+11 −2 | source/arch/arm/windows/cpuid.c | |
+2 −2 | source/arch/intel/cpuid.c | |
+186 −238 | source/date_time.c | |
+16 −3 | source/posix/thread.c | |
+2 −5 | source/string.c | |
+2 −2 | tests/CMakeLists.txt | |
+51 −62 | tests/date_time_test.c | |
+34 −0 | tests/thread_test.c |
Submodule aws-c-io
updated
6 files
+20 −1 | .github/workflows/ci.yml | |
+1 −1 | builder.json | |
+4 −0 | include/aws/io/channel.h | |
+0 −12 | include/aws/io/tls_channel_handler.h | |
+1 −1 | source/darwin/secure_transport_tls_channel_handler.c | |
+2 −2 | tests/CMakeLists.txt |
Submodule aws-c-s3
updated
25 files
+5 −2 | .github/workflows/ci.yml | |
+1 −1 | .github/workflows/clang-format.yml | |
+1 −1 | .github/workflows/codecov.yml | |
+12 −0 | include/aws/s3/private/s3_client_impl.h | |
+32 −3 | include/aws/s3/private/s3_meta_request_impl.h | |
+1 −1 | include/aws/s3/private/s3_platform_info.h | |
+6 −0 | include/aws/s3/private/s3_util.h | |
+8 −0 | include/aws/s3/s3.h | |
+64 −1 | include/aws/s3/s3_client.h | |
+5 −1 | source/s3.c | |
+18 −3 | source/s3_auto_ranged_get.c | |
+7 −0 | source/s3_auto_ranged_put.c | |
+97 −4 | source/s3_client.c | |
+10 −12 | source/s3_endpoint.c | |
+31 −1 | source/s3_endpoint_resolver/aws_s3_endpoint_rule_set.c | |
+229 −31 | source/s3_meta_request.c | |
+10 −2 | source/s3_platform_info.c | |
+16 −7 | source/s3_util.c | |
+21 −0 | tests/CMakeLists.txt | |
+9 −0 | tests/mock_s3_server/GetObject/get_object_long_error.json | |
+3 −1 | tests/mock_s3_server/mock_s3_server.py | |
+652 −0 | tests/s3_asyncwrite_tests.c | |
+60 −9 | tests/s3_data_plane_tests.c | |
+156 −0 | tests/s3_many_async_uploads_without_data_test.c | |
+44 −0 | tests/s3_mock_server_tests.c |
Submodule aws-lc
updated
from 19d9ac to 628482
Submodule s2n
updated
from 80a691 to 171c96
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters