-
Notifications
You must be signed in to change notification settings - Fork 71
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
Patina PR #410
Open
msdx321
wants to merge
13
commits into
gwsystems:loaderarm
Choose a base branch
from
msdx321:patina
base: loaderarm
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Patina PR #410
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
01dd678
patina: Implement the initial version of patina
msdx321 d569031
patina_bench: Implement initial benchmarking for patina_chan
msdx321 2752cd9
patina_bench: Implement initial benchmarking for patina_mutex
msdx321 a35e8f0
patina_bench: Implement initial benchmarking for patina_sem
msdx321 4c93731
patina_bench: Implement initial benchmarking for patina_timer
msdx321 5d2b74a
patina_bench: Implement initial benchmarking for patina_event
msdx321 d7138f6
patina_bench: Delay the benches by 1s
msdx321 ccc03b8
patina_bench: event: Implement event variant
msdx321 d6c0539
patina_bench: Print all results for CDFs
msdx321 be22c1f
patina_bench: Fix file name for patina_timer_bench
msdx321 2147dfa
perfdata: Add perfdata_raw()
msdx321 673f5d8
pingpong: Use perfdata
msdx321 8699961
patina_bench: Misc tweaks
msdx321 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
18 changes: 18 additions & 0 deletions
18
src/components/implementation/tests/patina_chan_bench/Makefile
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Required variables used to drive the compilation process. It is OK | ||
# for many of these to be empty. | ||
# | ||
# The set of interfaces that this component exports for use by other | ||
# components. This is a list of the interface names. | ||
INTERFACE_EXPORTS = | ||
# The interfaces this component is dependent on for compilation (this | ||
# is a list of directory names in interface/) | ||
INTERFACE_DEPENDENCIES = | ||
# The library dependencies this component is reliant on for | ||
# compilation/linking (this is a list of directory names in lib/) | ||
LIBRARY_DEPENDENCIES = component patina ubench | ||
# Note: Both the interface and library dependencies should be | ||
# *minimal*. That is to say that removing a dependency should cause | ||
# the build to fail. The build system does not validate this | ||
# minimality; that's on you! | ||
|
||
include Makefile.subsubdir |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
## tests | ||
|
||
This is the skeleton interface used by the `mkcomponent.sh` script to aid in the creation of a new component. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just a brief note here about what it actually does, or remove this file. The file has no value as it stands. (I know it was automatically created). |
||
It provides no functionality, and should never be depended on! | ||
This documentation should be *replaced* in the documentation for a new component. | ||
|
||
### Description | ||
|
||
### Usage and Assumptions |
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I know you didn't add this code, but there is no reason to keep meaningless printouts in the code. Feel free to remove them.