Skip to content
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

cFE Integration candidate: 2021-04-27 #1431

Merged
merged 30 commits into from
Apr 29, 2021
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
1ae46c0
Fix #1285, Remove broken BUILDDIR reference
skliper Apr 8, 2021
85584aa
Fix #1301, remove option for "osal_compatible"
jphickey Apr 12, 2021
96341ca
Fix #1314, Remove Unused Error Codes
zanzaben Apr 13, 2021
da86146
Fix #1365, assert CFE_RESOURCEID_MAX is a bitmask
jphickey Apr 16, 2021
c518d3a
Fix #1346, error if alignment size not a power of two
jphickey Apr 16, 2021
14faa47
Fix #1311, CFE_SUCCESS constant type
jphickey Apr 16, 2021
469d970
Fix #1330, better warning about malformed startup line
jphickey Apr 16, 2021
24b9a3b
Fix #1317, memory pool pointer type
jphickey Apr 19, 2021
e531836
Fix #1355, improve documentation for resourceID patterns
jphickey Apr 19, 2021
9ed820f
Fix #1340, update documentation for CFE_ES_DeleteCDS
jphickey Apr 19, 2021
e0a9079
Fix #1345, exception logic when app/task is not found
jphickey Apr 19, 2021
daa62c1
Fix #1349, remove unneeded CFE_ES_SYSLOG_APPEND macro
jphickey Apr 16, 2021
85bfba2
Fix #1338, ignore status of call to CFE_ES_CDS_CachePreload
jphickey Apr 16, 2021
403df80
Fix #1330, add unit test case for too many tokens
jphickey Apr 20, 2021
d785db8
Fix #809, add ES Child Task Functional Test
zanzaben Apr 22, 2021
ef9ab99
Merge pull request #1379 from jphickey/fix-1317-pool-memtype
astrogeco Apr 28, 2021
27c49a1
Merge pull request #1289 from zanzaben/fix809_ES_Child_Task_Functiona…
astrogeco Apr 28, 2021
d981fe4
Merge pull request #1286 from skliper/fix1285-builddir-makeref
astrogeco Apr 28, 2021
6a9e8c9
Merge pull request #1305 from jphickey/fix-1301-resourceid-options
astrogeco Apr 28, 2021
bba169a
Merge pull request #1374 from jphickey/fix-1311-cfe-status-type
astrogeco Apr 28, 2021
9eec887
Merge pull request #1316 from zanzaben/Fix1314_remove_unused_error_code
astrogeco Apr 28, 2021
53db85c
Merge pull request #1370 from jphickey/fix-1330-startup-warning
astrogeco Apr 28, 2021
069646d
Merge pull request #1373 from jphickey/fix-1338-check-status
astrogeco Apr 28, 2021
1b91d33
Merge pull request #1384 from jphickey/fix-1340-delete-cds-doc
astrogeco Apr 28, 2021
d9f125b
Merge pull request #1385 from jphickey/fix-1345-app-not-found-doc
astrogeco Apr 28, 2021
c84feec
Merge pull request #1372 from jphickey/fix-1346-alignsize
astrogeco Apr 28, 2021
628c150
Merge pull request #1368 from jphickey/fix-1349-append-macro
astrogeco Apr 28, 2021
f6c9974
Merge pull request #1382 from jphickey/fix-1355-resourceid-docs
astrogeco Apr 28, 2021
68f83b1
Merge pull request #1371 from jphickey/fix-1365-resourceid-max
astrogeco Apr 28, 2021
c9735e5
IC:2021-04-28, Bump to v6.8.0-rc1+dev540
astrogeco Apr 28, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix #1311, CFE_SUCCESS constant type
Ensures that the CFE_SUCCESS constant is the CFE_Status_t type.
  • Loading branch information
jphickey committed Apr 16, 2021
commit 14faa472e6f703bb74a6d56125693831b63ace20
2 changes: 1 addition & 1 deletion modules/core_api/fsw/inc/cfe_error.h
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ typedef int32 CFE_Status_t;
*
* Operation was performed successfully
*/
#define CFE_SUCCESS (0)
#define CFE_SUCCESS ((CFE_Status_t)0)

/**
* @brief No Counter Increment
Expand Down