Changeset e5ca6593 in rtems
- Timestamp:
- 08/21/11 19:59:03 (12 years ago)
- Branches:
- 4.11, 5, master
- Children:
- 08ef1631
- Parents:
- 74ac113
- Location:
- cpukit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r74ac113 re5ca6593 1 2011-08-21 Joel Sherrill <joel.sherrilL@OARcorp.com> 2 3 PR 1890/cpukit 4 * posix/src/mqueuerecvsupp.c: POSIX says msg_prio is allowed to be 5 NULL. 6 1 7 2011-08-21 Joel Sherrill <joel.sherrilL@OARcorp.com> 2 8 -
cpukit/posix/src/mqueuerecvsupp.c
r74ac113 re5ca6593 12 12 * time. 13 13 * 14 * COPYRIGHT (c) 1989-20 08.14 * COPYRIGHT (c) 1989-2011. 15 15 * On-Line Applications Research Corporation (OAR). 16 16 * … … 106 106 107 107 _Thread_Enable_dispatch(); 108 *msg_prio = 109 _POSIX_Message_queue_Priority_from_core(_Thread_Executing->Wait.count); 108 if (msg_prio) { 109 *msg_prio = _POSIX_Message_queue_Priority_from_core( 110 _Thread_Executing->Wait.count 111 ); 112 } 110 113 111 114 if ( !_Thread_Executing->Wait.return_code )
Note: See TracChangeset
for help on using the changeset viewer.