Changeset 0f7afe50 in rtems
- Timestamp:
- 11/09/11 18:42:17 (11 years ago)
- Branches:
- 4.11, 5, master
- Children:
- 634b14e
- Parents:
- 552a80fc
- Location:
- cpukit
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r552a80fc r0f7afe50 1 2011-11-09 Werner Almesberger <werner@almesberger.net> 2 3 PR 1957/cpukit 4 * score/include/rtems/score/coremutex.h, 5 score/inline/rtems/score/threadmp.inl: Add parentheses to protect 6 macro arguments. 7 1 8 2011-11-07 Ralf Corsepius <ralf.corsepius@rtems.org> 2 9 -
cpukit/score/include/rtems/score/coremutex.h
r552a80fc r0f7afe50 396 396 ); \ 397 397 } \ 398 if ( _CORE_mutex_Seize_interrupt_trylock( _the_mutex, & _level) ) { \399 if ( ! _wait) { \398 if ( _CORE_mutex_Seize_interrupt_trylock( _the_mutex, &(_level) ) ) { \ 399 if ( !(_wait) ) { \ 400 400 _ISR_Enable( _level ); \ 401 401 _Thread_Executing->Wait.return_code = \ -
cpukit/score/inline/rtems/score/threadmp.inl
r552a80fc r0f7afe50 39 39 */ 40 40 #define _Thread_MP_Is_receive(_the_thread) \ 41 ( _the_thread== _MPCI_Receive_server_tcb)41 ((_the_thread) == _MPCI_Receive_server_tcb) 42 42 43 43 /**
Note: See TracChangeset
for help on using the changeset viewer.