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

Bugfixes in the thread scheduling API #2268

Merged
merged 5 commits into from
Apr 29, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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 core/src/main/resources/lib/c/reactor-c
Submodule reactor-c updated 38 files
+9 −8 .github/workflows/api-docs.yml
+11 −2 .github/workflows/unit-tests.yml
+3 −0 .gitignore
+0 −5 CMakeLists.txt
+5 −0 README.md
+1 −1 core/CMakeLists.txt
+10 −12 core/clock.c
+53 −68 core/federated/RTI/CMakeLists.txt
+6 −0 core/federated/RTI/README.md
+1 −6 core/federated/RTI/main.c
+1 −3 core/federated/RTI/test/rti_common_test.c
+16 −13 core/federated/clock-sync.c
+4 −0 core/federated/network/net_util.c
+8 −3 include/core/federated/clock-sync.h
+57 −1 low_level_platform/api/low_level_platform.h
+0 −44 low_level_platform/api/platform/lf_C11_threads_support.h
+0 −5 low_level_platform/api/platform/lf_linux_support.h
+0 −5 low_level_platform/api/platform/lf_macos_support.h
+8 −0 low_level_platform/api/platform/lf_platform_util.h
+1 −3 low_level_platform/impl/CMakeLists.txt
+0 −68 low_level_platform/impl/src/lf_C11_threads_support.c
+5 −0 low_level_platform/impl/src/lf_POSIX_threads_support.c
+101 −11 low_level_platform/impl/src/lf_linux_support.c
+10 −8 low_level_platform/impl/src/lf_macos_support.c
+26 −0 low_level_platform/impl/src/lf_platform_util.c
+0 −16 low_level_platform/impl/src/lf_unix_syscall_support.c
+9 −0 low_level_platform/impl/src/lf_windows_support.c
+51 −0 low_level_platform/impl/src/lf_zephyr_support.c
+0 −13 low_level_platform/impl/src/platform_internal.c
+0 −2 test/CMakeLists.txt
+14 −63 test/Tests.cmake
+1 −1 test/general/tag_test.c
+1 −1 test/general/utils/hashmap_test.c
+1 −3 test/general/utils/hashset_test.c
+2 −2 test/general/utils/pqueue_test.c
+1 −1 test/rand_utils.c
+85 −0 test/scheduling/scheduling_api_test.c
+2 −2 test/src_gen_stub.c
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
* request a stop. Note that the test has no timeout because any finite timeout can, in theory,
* cause the test to fail. The first federate to request a stop does so at 50 ms, so the program
* should terminate quickly if all goes well.
* Placed in failing as we do not have full support for scheduling enclaves yet.
*/
target C

Expand Down