-
Notifications
You must be signed in to change notification settings - Fork 133
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
Develop zerocopy #1053
Merged
Merged
Develop zerocopy #1053
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
4a1f818
Added SharedMemory header
TheMutta c36ab3b
Finalized SharedMemory class
TheMutta cc44859
Added differentiation between SharedMemory and VectorMemory, added he…
TheMutta 557abfd
Replaced -1 fd with 0 fd
TheMutta 185186d
This reverts commit 557abfd0477a5217cec6cd095477e91d526dd0d4.
TheMutta c4ff206
Made fd and mapping in SharedMemory protected instead of private
TheMutta ad66010
XLinkStream read helper functions for handling FDs
TheMutta 3c1d976
Added SharedMemory support with FD in Buffer data structure
TheMutta cf35d8c
Added FD support in ImgFrame data structure
TheMutta a5016b6
Parsing fd in StreamMessageParser
TheMutta 5019cca
Updated XLink version.
TheMutta fd710a6
Closing FDs when destructing SharedMemory
TheMutta 1effc78
Added size parameters to stream write
TheMutta 88e86f8
Passing FDs by value
TheMutta 0d4b57d
Resolved conflict by reverting size changes.
TheMutta 979573a
Added new max throughput example to test the efficency of the transfe…
TheMutta 242d6ec
Added new example in CMakeLists.txt
TheMutta 316c073
Disabled openssh that caused issues when cross compiling to RVC4
TheMutta 74441bd
Added X_LINK_TCP_IP_OR_LOCAL_SHDMEM
TheMutta 587f9a2
Changes to removed unused constructor to SharedMemory and changes to …
TheMutta 21e4649
Removed MemoryKinds
TheMutta bc17b50
Re-added empty constructor.
TheMutta d8b81e8
Added tcpshd enviroment variable
TheMutta 2efe453
Setting back connection in deviceInfo from connectionHandler
TheMutta cb9ac60
Added memfd_create constructors.
TheMutta 9c4f05c
Readded kinds.
TheMutta 950dbd4
Added SharedMemory Fd writing in data queue
TheMutta 48f664d
Updated XLink
TheMutta 26fb39c
Clangformat
TheMutta f99c0d8
Removed example file
TheMutta 4560bb3
reset OpenSSL compile flag
TheMutta 1a249f3
Merge branch 'v3_develop' into v3_develop_zerocopy
TheMutta 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
Clangformat
- Loading branch information
commit 26fb39c9bc2978a7919e57abf8c19877abdfda3b
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -128,7 +128,7 @@ class Memory { | |
}; | ||
|
||
MemoryKinds getKind() { | ||
return kind; | ||
return kind; | ||
} | ||
|
||
protected: | ||
|
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
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
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
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 think we can remove this one before the merge.