Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

latest submodules #69

Merged
merged 2 commits into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crt/aws-c-auth
Submodule aws-c-auth updated 205 files
2 changes: 1 addition & 1 deletion crt/aws-c-common
Submodule aws-c-common updated 70 files
+2 −2 .github/workflows/ci.yml
+1 −1 .github/workflows/codecov.yml
+2 −2 .github/workflows/stale_issue.yml
+13 −17 CMakeLists.txt
+2 −2 README.md
+14 −0 bin/system_info/print_system_info.c
+18 −1 cmake/AwsFeatureTests.cmake
+92 −32 cmake/AwsSIMD.cmake
+1 −0 cmake/AwsTestHarness.cmake
+64 −16 include/aws/common/atomics_msvc.inl
+1 −1 include/aws/common/condition_variable.h
+10 −0 include/aws/common/config.h.in
+3 −0 include/aws/common/cpuid.h
+5 −2 include/aws/common/date_time.h
+14 −0 include/aws/common/hash_table.h
+28 −0 include/aws/common/host_utils.h
+1 −1 include/aws/common/json.h
+5 −0 include/aws/common/linked_list.h
+4 −0 include/aws/common/linked_list.inl
+1 −1 include/aws/common/mutex.h
+1 −1 include/aws/common/package.h
+0 −103 include/aws/common/promise.h
+1 −1 include/aws/common/rw_lock.h
+25 −3 include/aws/common/uri.h
+30 −31 include/aws/testing/aws_test_harness.h
+1 −1 source/allocator.c
+7 −1 source/arch/arm/auxv/cpuid.c
+40 −0 source/arch/arm/darwin/cpuid.c
+11 −2 source/arch/arm/windows/cpuid.c
+13 −0 source/arch/intel/cpuid.c
+5 −5 source/arch/intel/encoding_avx2.c
+6 −3 source/array_list.c
+1 −1 source/common.c
+186 −238 source/date_time.c
+2 −2 source/encoding.c
+66 −19 source/external/cJSON.c
+10 −8 source/external/cJSON.h
+8 −0 source/hash_table.c
+114 −0 source/host_utils.c
+3 −3 source/json.c
+1 −1 source/log_formatter.c
+2 −2 source/logging.c
+37 −22 source/memtrace.c
+16 −3 source/posix/thread.c
+0 −118 source/promise.c
+2 −5 source/string.c
+3 −3 source/task_scheduler.c
+45 −34 source/uri.c
+1 −1 source/windows/clock.c
+1 −1 source/windows/condition_variable.c
+2 −1 source/windows/device_random.c
+1 −1 source/windows/file.c
+1 −1 source/windows/mutex.c
+2 −1 source/windows/rw_lock.c
+1 −1 source/windows/thread.c
+6 −9 tests/CMakeLists.txt
+2 −2 tests/atomics_test.c
+51 −62 tests/date_time_test.c
+1 −1 tests/encoding_test.c
+73 −0 tests/host_util_test.c
+23 −0 tests/linked_list_test.c
+12 −8 tests/memtrace_test.c
+0 −181 tests/promise_test.c
+35 −1 tests/thread_test.c
+3 −3 tests/uri_test.c
+1 −1 verification/cbmc/include/proof_helpers/aws_byte_cursor_read_common.h
+1 −1 verification/cbmc/include/proof_helpers/make_common_data_structures.h
+8 −8 verification/cbmc/include/proof_helpers/nondet.h
+1 −1 verification/cbmc/sources/make_common_data_structures.c
+1 −1 verification/cbmc/stubs/abort_override_assert_false.c
2 changes: 1 addition & 1 deletion crt/aws-c-io
Submodule aws-c-io updated 45 files
+39 −1 .github/workflows/ci.yml
+1 −1 CMakeLists.txt
+2 −0 NOTICE
+0 −31 THIRD-PARTY-LICENSES.txt
+1 −1 builder.json
+4 −0 include/aws/io/channel.h
+2 −2 include/aws/io/channel_bootstrap.h
+17 −1 include/aws/io/socket.h
+2 −13 include/aws/io/tls_channel_handler.h
+1 −1 source/channel.c
+80 −7 source/channel_bootstrap.c
+58 −31 source/darwin/darwin_pki_utils.c
+9 −10 source/darwin/secure_transport_tls_channel_handler.c
+6 −2 source/event_loop.c
+4 −1 source/future.c
+1,734 −233 source/pkcs11/v2.40/pkcs11.h
+0 −939 source/pkcs11/v2.40/pkcs11f.h
+0 −2,003 source/pkcs11/v2.40/pkcs11t.h
+1 −1 source/pkcs11_lib.c
+0 −7 source/pkcs11_private.h
+43 −42 source/posix/socket.c
+32 −4 source/s2n/s2n_tls_channel_handler.c
+40 −21 source/socket_channel_handler.c
+75 −0 source/socket_shared.c
+0 −1 source/tls_channel_handler.c
+1 −1 source/windows/iocp/iocp_event_loop.c
+45 −34 source/windows/iocp/socket.c
+5 −1 source/windows/secure_channel_tls_handler.c
+32 −5 tests/CMakeLists.txt
+97 −0 tests/default_host_resolver_test.c
+23 −0 tests/future_test.c
+7 −10 tests/pkcs11_test.c
+34 −16 tests/read_write_test_handler.c
+7 −0 tests/read_write_test_handler.h
+15 −15 tests/resources/ca_root.crt
+4 −4 tests/resources/ec_unittests.crt
+ tests/resources/ec_unittests.p12
+15 −15 tests/resources/server.crt
+25 −25 tests/resources/server.key
+30 −30 tests/resources/server_chain.crt
+8 −8 tests/resources/unittests.crt
+ tests/resources/unittests.p12
+409 −83 tests/socket_handler_test.c
+56 −1 tests/socket_test.c
+44 −10 tests/tls_handler_test.c
2 changes: 1 addition & 1 deletion crt/aws-lc
2 changes: 1 addition & 1 deletion crt/s2n
Submodule s2n updated from 95753f to 114cca
2 changes: 1 addition & 1 deletion src/credentials.c
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

#include "credentials.h"

aws_crt_credentials_options *aws_crt_credentials_options_new() {
aws_crt_credentials_options *aws_crt_credentials_options_new(void) {
return aws_crt_resource_new(sizeof(aws_crt_credentials_options));
}

Expand Down
4 changes: 2 additions & 2 deletions src/credentials_providers.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ aws_crt_credentials_provider *aws_crt_credentials_provider_static_new(
return provider;
}

aws_crt_credentials_provider_environment_options *aws_crt_credentials_provider_environment_options_new() {
aws_crt_credentials_provider_environment_options *aws_crt_credentials_provider_environment_options_new(void) {
return aws_crt_resource_new(sizeof(aws_crt_credentials_provider_environment_options));
}

Expand All @@ -81,7 +81,7 @@ aws_crt_credentials_provider *aws_crt_credentials_provider_environment_new(
return provider;
}

aws_crt_credentials_provider_profile_options *aws_crt_credentials_provider_profile_options_new() {
aws_crt_credentials_provider_profile_options *aws_crt_credentials_provider_profile_options_new(void) {
return aws_crt_resource_new(sizeof(aws_crt_credentials_provider_profile_options));
}

Expand Down
2 changes: 1 addition & 1 deletion src/event_loop_group.c
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ struct _aws_crt_event_loop_group {
struct aws_event_loop_group *elg;
};

aws_crt_event_loop_group_options *aws_crt_event_loop_group_options_new() {
aws_crt_event_loop_group_options *aws_crt_event_loop_group_options_new(void) {
return aws_crt_resource_new(sizeof(aws_crt_event_loop_group_options));
}

Expand Down
2 changes: 1 addition & 1 deletion src/input_stream.c
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

#include "input_stream.h"

aws_crt_input_stream_options *aws_crt_input_stream_options_new() {
aws_crt_input_stream_options *aws_crt_input_stream_options_new(void) {
aws_crt_input_stream_options *options = aws_crt_resource_new(sizeof(aws_crt_input_stream_options));
return options;
}
Expand Down
Loading