-
Notifications
You must be signed in to change notification settings - Fork 0
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
[nasa/Nos3#325 ] Equuleus upgrade #5
Merged
Conversation
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
Improves default support for return values of sizes other than 32 bits. Previously this required a custom handler for any value that was not a 32 bit integer. With this update any integer value can be used, and a value translation will occur if the size is differnt. Thus boolean values, 8,16, and 64-bit ints can be configured through the same basic API without needing to add a handler.
…vals Fix nasa#1344, UT assert stub return values
osal Integration candidate: Caelum-rc4+dev38
Adds a function and parameter description for this API which resolves a doxygen warning about it being undocumented.
Fix nasa#1361, add doxygen for UT_ConfigureGenericStubReturnValue
osal Integration candidate: Caelum-rc4+dev38-v2
Fix nasa#1366, removed cast that hid bug at compile time
osal Integration candidate: Caelum-rc4+dev39
Correct a few syntactical items that are valid C99 but not valid for C++03. This includes use of the designated initializer, compound literals, variadic macros, and a trailing comma in enum declarations. Note this only matters for public API headers, as some users may need to include these directly from a c++ file. For normal C source files, these are all compiled as C99 and thus the syntax is fine.
Adds a new build and test workflow that includes an API validation with both C and C++ compilers. This should catch any cases where syntactical elements that work in C but do not work in C++ appear in the headers.
…ble-branch-in-OS_ObjectIdAllocateNew Fix nasa#1110, Modify unreachable branch in OS_ObjectIdAllocateNew
osal Integration candidate: Caelum-rc4+dev40
Fix nasa#1365, fixup API headers for C++
Fix nasa#1370, workflow to validate OSAL API
osal Integration candidate: Caelum-rc4+dev41
Adds generic macros for asserting on integer values that can work with any integer data type, including size_t and 64-bit values where needed.
Fix nasa#1359, add assert macros for other data types
osal Integration candidate: Caelum-rc4+dev43
…pushing them to the integration-candidate branch.
Fix nasa#1382, Create Workflow for IC Bundle Generation
osal Integration candidate: Caelum-rc4+dev47
Fix nasa#1392, Add additional counters to test summary
osal Integration candidate: Caelum-rc4+dev52
Replace these with long and unsigned long, respectively, as some old systems might not have these types even if it does provide stdint.h
Add OS_SocketBindAddress() and OS_SocketListen() to allow users to bind an address without also calling listen(). The use case is for client side connections where the source port needs to be controlled.
Fix nasa#1396, do not use intmax_t/uintmax_t types
Fix nasa#1398, separate bind and listen calls for streams
osal Integration candidate: Caelum-rc4+dev54
This reports that the functionality is not implemented and reports it as an MIR result, instead of having most/all of the tests fail.
Fix nasa#1404, skip condvar tests if not implemented
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.
CodeQL found more than 20 potential problems in the proposed changes. Check the Files changed tab for more details.
3 tasks
jlucas9
approved these changes
Oct 10, 2024
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.
No description provided.