Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
sberkun committed Feb 22, 2024
1 parent f70fd5d commit 77ef8b6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/main/resources/lib/c/reactor-c
Submodule reactor-c updated 82 files
+11 −0 .github/scripts/check-diff.sh
+46 −0 .github/workflows/check-diff.yml
+15 −7 .github/workflows/ci.yml
+3 −0 CMakeLists.txt
+1 −1 README.md
+5 −3 core/CMakeLists.txt
+60 −0 core/clock.c
+24 −23 core/environment.c
+4 −0 core/federated/RTI/CMakeLists.txt
+14 −2 core/federated/RTI/README.md
+1 −1 core/federated/RTI/main.c
+10 −4 core/federated/RTI/rti_common.c
+13 −13 core/federated/RTI/rti_local.c
+53 −53 core/federated/RTI/rti_remote.c
+37 −10 core/federated/clock-sync.c
+58 −65 core/federated/federate.c
+2 −2 core/federated/network/net_util.c
+46 −28 core/lf_token.c
+8 −7 core/platform/CMakeLists.txt
+2 −2 core/platform/arduino_mbed/ConditionWrapper.cpp
+8 −8 core/platform/lf_C11_threads_support.c
+4 −7 core/platform/lf_POSIX_threads_support.c
+12 −12 core/platform/lf_arduino_support.c
+40 −0 core/platform/lf_atomic_gcc_clang.c
+93 −0 core/platform/lf_atomic_irq.c
+37 −0 core/platform/lf_atomic_windows.c
+2 −5 core/platform/lf_linux_support.c
+1 −2 core/platform/lf_macos_support.c
+6 −6 core/platform/lf_nrf52_support.c
+21 −26 core/platform/lf_rp2040_support.c
+10 −61 core/platform/lf_unix_clock_support.c
+9 −14 core/platform/lf_windows_support.c
+5 −5 core/platform/lf_zephyr_clock_counter.c
+5 −5 core/platform/lf_zephyr_clock_kernel.c
+11 −62 core/platform/lf_zephyr_support.c
+9 −22 core/reactor.c
+30 −39 core/reactor_common.c
+7 −73 core/tag.c
+46 −93 core/threaded/reactor_threaded.c
+12 −16 core/threaded/scheduler_GEDF_NP.c
+17 −21 core/threaded/scheduler_NP.c
+17 −17 core/threaded/scheduler_adaptive.c
+3 −3 core/threaded/scheduler_instance.c
+113 −38 core/threaded/watchdog.c
+13 −13 core/trace.c
+1 −1 core/utils/CMakeLists.txt
+10 −9 core/utils/lf_semaphore.c
+3 −1 docs/Doxyfile.in
+199 −0 include/api/reaction_macros.h
+28 −0 include/api/reaction_macros_undef.h
+2 −45 include/api/schedule.h
+0 −224 include/api/set.h
+0 −123 include/api/set_undef.h
+52 −0 include/core/clock.h
+4 −0 include/core/environment.h
+21 −0 include/core/federated/clock-sync.h
+5 −26 include/core/lf_token.h
+0 −9 include/core/modal_models/modes.h
+26 −103 include/core/platform.h
+103 −0 include/core/platform/lf_atomic.h
+0 −7 include/core/platform/lf_linux_support.h
+0 −4 include/core/platform/lf_macos_support.h
+0 −4 include/core/platform/lf_nrf52_support.h
+2 −2 include/core/platform/lf_rp2040_support.h
+0 −7 include/core/platform/lf_unix_clock_support.h
+0 −2 include/core/platform/lf_windows_support.h
+1 −2 include/core/platform/lf_zephyr_support.h
+27 −238 include/core/reactor.h
+0 −1 include/core/reactor_common.h
+22 −29 include/core/tag.h
+1 −1 include/core/threaded/scheduler_instance.h
+4 −2 include/core/threaded/watchdog.h
+0 −0 include/core/utils/lf_semaphore.h
+71 −6 include/core/utils/util.h
+5 −38 lib/schedule.c
+1 −1 lingua-franca-ref.txt
+5 −26 python/include/modal_models/definitions.h
+2 −2 python/lib/python_port.c
+257 −0 test/RTI/rti_common_test.c
+52 −0 test/Tests.cmake
+1 −1 test/src_gen_stub.c
+9 −9 util/sensor_simulator.c

0 comments on commit 77ef8b6

Please sign in to comment.