-
Notifications
You must be signed in to change notification settings - Fork 402
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
Allow For memory chunks bigger than 4GB #2157
Labels
enhancement
New feature
Comments
@kozakusek looking forward to your PR :) |
kozakusek
added a commit
to kozakusek/iceoryx
that referenced
this issue
Jan 10, 2024
I've created a draft PR #2158. In the meantime if you have a spare second I would apprieciate if you could check if I didn't messed up anything with the issue/commit/pr format 😃 |
kozakusek
added a commit
to kozakusek/iceoryx
that referenced
this issue
Jan 11, 2024
kozakusek
added a commit
to kozakusek/iceoryx
that referenced
this issue
Jan 14, 2024
kozakusek
added a commit
to kozakusek/iceoryx
that referenced
this issue
Jan 14, 2024
kozakusek
added a commit
to kozakusek/iceoryx
that referenced
this issue
Jan 14, 2024
kozakusek
added a commit
to kozakusek/iceoryx
that referenced
this issue
Jan 14, 2024
kozakusek
added a commit
to kozakusek/iceoryx
that referenced
this issue
Jan 16, 2024
kozakusek
added a commit
to kozakusek/iceoryx
that referenced
this issue
Jan 16, 2024
kozakusek
added a commit
to kozakusek/iceoryx
that referenced
this issue
Jan 16, 2024
kozakusek
added a commit
to kozakusek/iceoryx
that referenced
this issue
Jan 18, 2024
kozakusek
added a commit
to kozakusek/iceoryx
that referenced
this issue
Jan 30, 2024
22 tasks
kozakusek
added a commit
to kozakusek/iceoryx
that referenced
this issue
Feb 1, 2024
kozakusek
added a commit
to kozakusek/iceoryx
that referenced
this issue
Feb 1, 2024
kozakusek
added a commit
to kozakusek/iceoryx
that referenced
this issue
Feb 1, 2024
elBoberido
added a commit
that referenced
this issue
Feb 2, 2024
iox-#2157 Replace uint32_t with uint64_t for payload size
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
As discussed this seems to be a "technical unnecessary restriction."
From my experiments it seems possible to fix it by tweaking some of the types
Discussed in #2149
Originally posted by kozakusek January 3, 2024
When trying to start RouDi with a 4GB segment.mempool I encountered an unpleasant error:
Then after reading into the source code I noticed that in many cases (e.g.
iox_pub_loan_chunk
) the variable that refers to size is of typeuint32_t
.Is there a reason for this limitation? Are you planning to add support for bigger memory chunks by adding option to hold size in 64bit integers?
Thanks
The text was updated successfully, but these errors were encountered: