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

Fix #364 and others, Scrub user's guide #371

Merged
merged 4 commits into from
Mar 23, 2020
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