Skip to content

Commit

Permalink
Fix nasa#364, Scrub user's guide
Browse files Browse the repository at this point in the history
Document/comment changes only
Partially addresses nasa#255, nasa#12, nasa#18, nasa#366
  • Loading branch information
skliper committed Mar 15, 2020
1 parent a1e9dbf commit 4d429de
Show file tree
Hide file tree
Showing 10 changed files with 981 additions and 699 deletions.
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 4d429de

Please sign in to comment.