Skip to content

Commit

Permalink
Merge pull request #375 from nasa/integration-candidate
Browse files Browse the repository at this point in the history
Integration Candidate 2020-03-18
  • Loading branch information
astrogeco committed Mar 27, 2020
2 parents 2284a6f + 2c2ce1e commit 20a83c4
Show file tree
Hide file tree
Showing 11 changed files with 1,049 additions and 723 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ This distribution contains:

Version Notes:
==============

- 5.0.9: DEVELOPMENT
- Documentation updates (see https://github.com/nasa/osal/pull/375)
- 5.0.8: DEVELOPMENT
- Minor updates (see https://github.com/nasa/osal/pull/369)
- 5.0.7: DEVELOPMENT
Expand Down
Binary file removed doc/OSAL Library API.doc
Binary file not shown.
Binary file removed doc/OSAL Library API.pdf
Binary file not shown.
8 changes: 4 additions & 4 deletions src/os/inc/common_types.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
* Define the "osalbool" type for backward compatibility.
* This will be removed in a future release.
*/
typedef bool osalbool;
typedef bool osalbool; /**< @deprecated Use bool */

/*
* Boolean type for compatibility --
Expand All @@ -116,15 +116,15 @@ typedef bool osalbool;
*/

#if (!defined(_USING_RTEMS_INCLUDES_) || !defined(RTEMS_DEPRECATED_TYPES))
typedef osalbool boolean;
typedef osalbool boolean; /**< @deprecated Use bool */
#endif

#ifndef TRUE /* Boolean true */
#define TRUE true
#define TRUE true /**< @deprecated Use true */
#endif

#ifndef FALSE /* Boolean false */
#define FALSE false
#define FALSE false /**< @deprecated Use false */
#endif


Expand Down
Loading

0 comments on commit 20a83c4

Please sign in to comment.