Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
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