Changeset 48f693a9 in rtems
- Timestamp:
- 01/24/23 15:53:03 (8 months ago)
- Branches:
- master
- Children:
- a2360c4
- Parents:
- 5156cd69
- Location:
- cpukit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/include/rtems/score/smpimpl.h
r5156cd69 r48f693a9 167 167 * this function. 168 168 * 169 * @return Returns the processed message. 170 */ 171 long unsigned _SMP_Process_message( 172 Per_CPU_Control *cpu_self, 173 long unsigned message 174 ); 169 * @param message is the message to process. 170 */ 171 void _SMP_Process_message( Per_CPU_Control *cpu_self, long unsigned message ); 175 172 176 173 /** … … 201 198 * @param[in, out] cpu_self is the processor control of the processor executing 202 199 * this function. 203 * 204 * @return Returns the processed message. 205 */ 206 static inline long unsigned _SMP_Inter_processor_interrupt_handler( 200 */ 201 static inline void _SMP_Inter_processor_interrupt_handler( 207 202 Per_CPU_Control *cpu_self 208 203 ) … … 223 218 224 219 if ( RTEMS_PREDICT_FALSE( message != 0 ) ) { 225 return_SMP_Process_message( cpu_self, message );220 _SMP_Process_message( cpu_self, message ); 226 221 } 227 228 return message;229 222 } 230 223 -
cpukit/score/src/smp.c
r5156cd69 r48f693a9 312 312 } 313 313 314 long unsigned _SMP_Process_message( 315 Per_CPU_Control *cpu_self, 316 long unsigned message 317 ) 314 void _SMP_Process_message( Per_CPU_Control *cpu_self, long unsigned message ) 318 315 { 319 316 if ( ( message & SMP_MESSAGE_SHUTDOWN ) != 0 ) { … … 333 330 _Per_CPU_Perform_jobs( cpu_self ); 334 331 } 335 336 return message;337 332 } 338 333
Note: See TracChangeset
for help on using the changeset viewer.