adaptived: Add support for sharing data between causes and effects#52
Merged
Conversation
Member
Author
|
Code coverage on https://coveralls.io/builds/74677750/source?filename=adaptived%2Fsrc%2Fshared_data.c |
sidkumar99
reviewed
Jul 21, 2025
sidkumar99
left a comment
There was a problem hiding this comment.
Reviewed-by: Sidhartha Kumar sidhartha.kumar@oracle.com
sidkumar99
reviewed
Jul 21, 2025
sidkumar99
left a comment
There was a problem hiding this comment.
Reviewed-by: Sidhartha Kumar sidhartha.kumar@oracle.com
a35a39c to
45b4510
Compare
|
Reviewed-by: Sidhartha Kumar sidhartha.kumar@oracle.com |
Cgroup v1 (Ubuntu 20) boxes have been retired in Github Actions. Delete all Github Actions jobs that require these machines Signed-off-by: Tom Hromatka <tom.hromatka@oracle.com> Reviewed-by: Sidhartha Kumar <sidhartha.kumar@oracle.com>
Add support for sharing data between a cause and the effect(s) that are in the same rule. It is intended to share data unidirectionally from the cause to the effect(s), but by using the persist flag, data can also be shared from the effect(s) to the cause. (The persist flag can also be used by the cause to retain data across adaptived_loop() loops.) Sharing data in any direction makes tight coupling between causes and effects. Use caution when sharing data, and clearly document data sharing expectations. Signed-off-by: Tom Hromatka <tom.hromatka@oracle.com> Reviewed-by: Sidhartha Kumar <sidhartha.kumar@oracle.com>
45b4510 to
8774693
Compare
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add support for sharing data between a cause and the effect(s) that are
in the same rule. It is intended to share data unidirectionally from
the cause to the effect(s), but by using the persist flag, data can also
be shared from the effect(s) to the cause. (The persist flag can also
be used by the cause to retain data across adaptived_loop() loops.)
Sharing data in any direction makes tight coupling between causes and
effects. Use caution when sharing data, and clearly document data
sharing expectations.