Changeset 856a44e4 in rtems
- Timestamp:
- 08/30/01 13:29:38 (21 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 302b76d
- Parents:
- 7ac1f89
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/posix/ChangeLog
r7ac1f89 r856a44e4 1 2001-08-30 Joel Sherrill <joel@OARcorp.com> 2 3 * macros/rtems/posix/mqueue.inl: Add cast so negation works. 4 1 5 2001-08-16 Joel Sherrill <joel@OARcorp.com> 2 6 -
c/src/exec/posix/macros/rtems/posix/mqueue.inl
r7ac1f89 r856a44e4 74 74 /* absolute value without a library dependency */ 75 75 #define _POSIX_Message_queue_Priority_from_core( _priority ) \ 76 ((((_priority) >= 0) ? (_priority) : -(_priority))) 76 ((((CORE_message_queue_Submit_types)(_priority)) >= 0) ? \ 77 (_priority) : \ 78 -((CORE_message_queue_Submit_types)(_priority))) 77 79 78 80 #endif -
cpukit/posix/ChangeLog
r7ac1f89 r856a44e4 1 2001-08-30 Joel Sherrill <joel@OARcorp.com> 2 3 * macros/rtems/posix/mqueue.inl: Add cast so negation works. 4 1 5 2001-08-16 Joel Sherrill <joel@OARcorp.com> 2 6 -
cpukit/posix/macros/rtems/posix/mqueue.inl
r7ac1f89 r856a44e4 74 74 /* absolute value without a library dependency */ 75 75 #define _POSIX_Message_queue_Priority_from_core( _priority ) \ 76 ((((_priority) >= 0) ? (_priority) : -(_priority))) 76 ((((CORE_message_queue_Submit_types)(_priority)) >= 0) ? \ 77 (_priority) : \ 78 -((CORE_message_queue_Submit_types)(_priority))) 77 79 78 80 #endif
Note: See TracChangeset
for help on using the changeset viewer.