-
Notifications
You must be signed in to change notification settings - Fork 215
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
Integration Candidate 2020-05-20 #482
Commits on May 8, 2020
-
Configuration menu - View commit details
-
Copy full SHA for c00e14f - Browse repository at this point
Copy the full SHA c00e14fView commit details
Commits on May 13, 2020
-
Configuration menu - View commit details
-
Copy full SHA for 8352d2f - Browse repository at this point
Copy the full SHA 8352d2fView commit details
Commits on May 14, 2020
-
Fix #454, Better error translation on statvfs()
The statvfs() call depends on the underlying filesystem supporting this. On RTEMS, the IMFS filesystem type does not, and it returns the ENOSYS errno. This is better translated to OS_ERR_NOT_IMPLEMENTED rather than OS_ERROR.
Configuration menu - View commit details
-
Copy full SHA for 45c9742 - Browse repository at this point
Copy the full SHA 45c9742View commit details -
Fix #459, dynamically create RAM disk devices on RTEMS
Rather than relying on the BSP to preallocate, the ram disk block devices can be created based on request. This correlates with the way RAM disks are implemented on VxWorks and is cleaner and more flexible by making it more independent of the BSP.
Configuration menu - View commit details
-
Copy full SHA for 5f97b9b - Browse repository at this point
Copy the full SHA 5f97b9bView commit details -
Fix #455, correct length of device_name in filesys
This string should be of OS_FS_DEV_NAME_LEN
Configuration menu - View commit details
-
Copy full SHA for 72af6d5 - Browse repository at this point
Copy the full SHA 72af6d5View commit details -
Fix #457, provide BSP shutdown handler
This provides a better method of handling test abort, in a BSP-specific manner.
Configuration menu - View commit details
-
Copy full SHA for 042db6b - Browse repository at this point
Copy the full SHA 042db6bView commit details -
Fix #367, Deprecate OS_VolumeTable objects
Remove the OS_VolumeTable definition from all BSPs, but provide a default (empty) one to support linking when OMIT_DEPRECATED is not set.
Configuration menu - View commit details
-
Copy full SHA for 1c36569 - Browse repository at this point
Copy the full SHA 1c36569View commit details -
Fix #460, UT dependencies on BSP volume maps
Do not assume BSP volume table provides a "/cf" directory map. Instead, create a UT-specific map of a consistent name, and use that.
Configuration menu - View commit details
-
Copy full SHA for b251466 - Browse repository at this point
Copy the full SHA b251466View commit details
Commits on May 15, 2020
-
Fix #456, improve filesystem type identification
Add a distinct type for FS_BASED entries, and an UNKNOWN value for when a type is actually not yet identified. This can be used to identify the FS type first at the shared layer, then in the implementation layer as a fallback option if not identifiable in the shared layer. Use the volume name prefix "RAM" as a hint that the volume is supposed to be a VOLATILE disk as opposed to a normal disk. This is done in shared layer so it applies to all OS types.
Configuration menu - View commit details
-
Copy full SHA for b51f5b6 - Browse repository at this point
Copy the full SHA b51f5b6View commit details -
Fix #453, Select API and unit test updates
Confirm that the "selectable" flag is set before calling the underlying select() API. Also update unit tests to match.
Configuration menu - View commit details
-
Copy full SHA for 312b7cc - Browse repository at this point
Copy the full SHA 312b7ccView commit details
Commits on May 16, 2020
-
Fix #450, add external source directory for OS/BSP
If the "OSAL_EXT_SOURCE_DIR" cache variable is set, this location will be checked first for a BSP/OS implementation layer. This can point to an out-of-tree implementation layer if necessary. However it is discouraged from actually doing this as there is no attempt at API stability at the low level implementation layer.
Configuration menu - View commit details
-
Copy full SHA for c139ae3 - Browse repository at this point
Copy the full SHA c139ae3View commit details
Commits on May 18, 2020
-
Fix #293, Expand API for object queries
Implement OS_GetResourceName, OS_ForEachObjectByType
Configuration menu - View commit details
-
Copy full SHA for 36ae153 - Browse repository at this point
Copy the full SHA 36ae153View commit details
Commits on May 19, 2020
-
Fix #470, bin sem unlock after task delete
Corrects issue when a task waiting on a binary semaphore is deleted, it left the mutex in a locked state preventing other tasks from using the mutex.
Configuration menu - View commit details
-
Copy full SHA for 084dd75 - Browse repository at this point
Copy the full SHA 084dd75View commit details -
Fix #474, Add timecb global mutex
The mutex to protect the timer callback (timecb) resource table was missing.
Configuration menu - View commit details
-
Copy full SHA for eda6210 - Browse repository at this point
Copy the full SHA eda6210View commit details
Commits on May 20, 2020
-
Fix #476, add global lock/unlock wrapper
Add a wrapper at the shared layer to provide a common location to check the status of global lock/unlock ops. All calls to OS_Lock_Global_Impl and OS_Unlock_Global_Impl from the shared modules are replaced with calls to this wrapper.
Configuration menu - View commit details
-
Copy full SHA for 4ef9c18 - Browse repository at this point
Copy the full SHA 4ef9c18View commit details
Commits on May 22, 2020
-
Fix #374, Updated OS_ConvertToArrayIndex to verify output is in range…
… between 0 and <MAX and output array indices vary
Configuration menu - View commit details
-
Copy full SHA for 7466997 - Browse repository at this point
Copy the full SHA 7466997View commit details
Commits on May 26, 2020
-
Merge pull request #464 from jphickey/fix-455-devname-length
Fix #455, correct length of device_name in filesys
Configuration menu - View commit details
-
Copy full SHA for d6b167b - Browse repository at this point
Copy the full SHA d6b167bView commit details -
Merge pull request #475 from jphickey/fix-474-timecb-lock
Fix #474, Add timecb global mutex
Configuration menu - View commit details
-
Copy full SHA for aac3e09 - Browse repository at this point
Copy the full SHA aac3e09View commit details -
Merge pull request #469 from jphickey/fix-293-foreach-typefilter
Fix #293, Expand API for object queries
Configuration menu - View commit details
-
Copy full SHA for 150f8c7 - Browse repository at this point
Copy the full SHA 150f8c7View commit details -
Merge pull request #468 from jphickey/fix-450-alt-source-directory
Fix #450, add external source directory for OS/BSP
Configuration menu - View commit details
-
Copy full SHA for 063d69f - Browse repository at this point
Copy the full SHA 063d69fView commit details -
Merge pull request #472 from jphickey/fix-470-binsem-lock
Fix #470, Binary sem task delete issues
Configuration menu - View commit details
-
Copy full SHA for 22e1465 - Browse repository at this point
Copy the full SHA 22e1465View commit details -
Merge pull request #451 from lbleier-GSFC/fix447-moredocwarn
Fix #447, Resolve doxygen warnings
Configuration menu - View commit details
-
Copy full SHA for a66770f - Browse repository at this point
Copy the full SHA a66770fView commit details -
Merge pull request #466 from jphickey/fix-459-rtems-ramdisk
Fix #459, dynamically create RAM disk devices on RTEMS
Configuration menu - View commit details
-
Copy full SHA for bc24490 - Browse repository at this point
Copy the full SHA bc24490View commit details -
Merge pull request #465 from jphickey/fix-457-bsp-shutdown-handler
Fix #457, provide BSP shutdown handler
Configuration menu - View commit details
-
Copy full SHA for f5a7224 - Browse repository at this point
Copy the full SHA f5a7224View commit details -
Merge pull request #463 from jphickey/fix-454-statvfs-err-translation
Fix #454, Better error translation on statvfs()
Configuration menu - View commit details
-
Copy full SHA for 51ba5aa - Browse repository at this point
Copy the full SHA 51ba5aaView commit details -
Merge pull request #439 from yammajamma/fix374-2-Object-Utilities-Mis…
…sing-Tests Fix #374, Add Object Utility API functional tests
Configuration menu - View commit details
-
Copy full SHA for 35d8b73 - Browse repository at this point
Copy the full SHA 35d8b73View commit details -
Configuration menu - View commit details
-
Copy full SHA for f68486c - Browse repository at this point
Copy the full SHA f68486cView commit details -
Merge pull request #483 from yammajamma/HOTFIX-374-Object-Utilitys-Mi…
…ssing-Functional-API-Tests Hotfix #374 object utilitys missing functional api tests
Configuration menu - View commit details
-
Copy full SHA for 5f910f7 - Browse repository at this point
Copy the full SHA 5f910f7View commit details
Commits on May 27, 2020
-
Merge pull request #478 from jphickey/fix-476-global-mutex-wrapper
Fix #476, add global lock/unlock wrapper
Configuration menu - View commit details
-
Copy full SHA for 5c8a01c - Browse repository at this point
Copy the full SHA 5c8a01cView commit details
Commits on May 28, 2020
-
HOTFIX: Fix parameter name consistency
Use "object_id" rather than "id" for consistency with other API calls. The difference was flagged as a warning by doxygen.
Configuration menu - View commit details
-
Copy full SHA for f768a43 - Browse repository at this point
Copy the full SHA f768a43View commit details -
HOTFIX: Correct issues shown in Travis CI tests
- Correct merge issue with regards to the OS_Global_Unlock function - Correct use of OS_TaskGetId() - need to use Impl variant here.
Configuration menu - View commit details
-
Copy full SHA for ce45c31 - Browse repository at this point
Copy the full SHA ce45c31View commit details -
Merge pull request #461 from jphickey/fix-367-deprecate-voltab
Fix #367, 453, 456, 460, Deprecate OS_VolumeTable and other fixes
Configuration menu - View commit details
-
Copy full SHA for 922df4f - Browse repository at this point
Copy the full SHA 922df4fView commit details
Commits on May 29, 2020
-
Increase version to 5.0.18 and update ReadMe.
Gerardo E. Cruz-Ortiz committedMay 29, 2020 Configuration menu - View commit details
-
Copy full SHA for ffe100d - Browse repository at this point
Copy the full SHA ffe100dView commit details