You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,6 +10,18 @@ The autogenerated OSAL user's guide can be viewed at <https://github.com/nasa/cF
10
10
11
11
## Version History
12
12
13
+
### Development Build: 5.1.0-rc1+dev68
14
+
15
+
- When `OS_DEBUG` is enabled, this adds a message if mutex give/take actions occur outside the expected sequence. This informs the user (via the debug console) if a lock is taken more than once or if a lock is given by a different task than the one that originally took it:
16
+
```
17
+
OS_MutSemTake():216:WARNING: Task 65547 taking mutex 327685 while owned by task 65547
18
+
```
19
+
- Removes all FIXME comments
20
+
- Resolves security/filename race issue by opening file and acting on descriptor by adding fstat stub
21
+
- Squashed the minor recommended bugs
22
+
- UtAssert macros now accept variable string arguments.The `UtAssert_True` wrapper around call is no longer needed to accommodate dynamic string output, thus removing the double assert. UtAssert macros will now be able to offer more information by themselves.
23
+
- See <https://github.com/nasa/osal/pull/639>
24
+
13
25
### Development Build: 5.1.0-rc1+dev60
14
26
15
27
- Appliy standard formating, whitespace-only changes
0 commit comments