Changeset ef22ab2 in rtems
- Timestamp:
- May 17, 1999, 10:46:01 PM (22 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 1e1b3e00
- Parents:
- 86cb89f
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/rtems/src/msgmp.c
r86cb89f ref22ab2 477 477 } 478 478 479 480 /*PAGE 481 * 482 * _Message_queue_Core_message_queue_mp_support 483 * 484 * Input parameters: 485 * the_thread - the remote thread the message was submitted to 486 * id - id of the message queue 487 * 488 * Output parameters: NONE 489 */ 490 491 void _Message_queue_Core_message_queue_mp_support ( 492 Thread_Control *the_thread, 493 Objects_Id id 494 ) 495 { 496 the_thread->receive_packet->return_code = RTEMS_SUCCESSFUL; 497 498 _Message_queue_MP_Send_response_packet( 499 MESSAGE_QUEUE_MP_RECEIVE_RESPONSE, 500 id, 501 the_thread 502 ); 503 } 504 479 505 /* end of file */ -
cpukit/rtems/src/msgmp.c
r86cb89f ref22ab2 477 477 } 478 478 479 480 /*PAGE 481 * 482 * _Message_queue_Core_message_queue_mp_support 483 * 484 * Input parameters: 485 * the_thread - the remote thread the message was submitted to 486 * id - id of the message queue 487 * 488 * Output parameters: NONE 489 */ 490 491 void _Message_queue_Core_message_queue_mp_support ( 492 Thread_Control *the_thread, 493 Objects_Id id 494 ) 495 { 496 the_thread->receive_packet->return_code = RTEMS_SUCCESSFUL; 497 498 _Message_queue_MP_Send_response_packet( 499 MESSAGE_QUEUE_MP_RECEIVE_RESPONSE, 500 id, 501 the_thread 502 ); 503 } 504 479 505 /* end of file */
Note: See TracChangeset
for help on using the changeset viewer.