source: rtems/cpukit/rtems/src/msgqbroadcast.c @ cc18d7b

4.115
Last change on this file since cc18d7b was cc18d7b, checked in by Sebastian Huber <sebastian.huber@…>, on 04/30/15 at 11:12:54

score: Fine grained locking for message queues

Aggregate several critical sections into a bigger one. Sending and
receiving messages is now protected by an ISR lock. Thread dispatching
is only disabled in case a blocking operation is necessary. The message
copy procedure is done inside the critical section (interrupts
disabled). Thus this change may have a negative impact on the interrupt
latency in case very large messages are transferred.

Update #2273.

  • Property mode set to 100644
File size: 2.3 KB
Line 
1/**
2 *  @file
3 *
4 *  @brief RTEMS Broadcast Message Queue
5 *  @ingroup ClassicMessageQueue
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-2014.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.rtems.org/license/LICENSE.
15 */
16
17#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#include <rtems/system.h>
22#include <rtems/score/chain.h>
23#include <rtems/score/isr.h>
24#include <rtems/score/coremsgimpl.h>
25#include <rtems/score/thread.h>
26#include <rtems/score/wkspace.h>
27#include <rtems/rtems/status.h>
28#include <rtems/rtems/attrimpl.h>
29#include <rtems/rtems/messageimpl.h>
30#include <rtems/rtems/options.h>
31#include <rtems/rtems/support.h>
32
33rtems_status_code rtems_message_queue_broadcast(
34  rtems_id    id,
35  const void *buffer,
36  size_t      size,
37  uint32_t   *count
38)
39{
40  Message_queue_Control          *the_message_queue;
41  Objects_Locations               location;
42  CORE_message_queue_Status       core_status;
43  ISR_lock_Context                lock_context;
44
45  if ( !buffer )
46    return RTEMS_INVALID_ADDRESS;
47
48  if ( !count )
49    return RTEMS_INVALID_ADDRESS;
50
51  the_message_queue = _Message_queue_Get_interrupt_disable(
52    id,
53    &location,
54    &lock_context
55  );
56  switch ( location ) {
57
58    case OBJECTS_LOCAL:
59      core_status = _CORE_message_queue_Broadcast(
60                      &the_message_queue->message_queue,
61                      buffer,
62                      size,
63                      id,
64                      #if defined(RTEMS_MULTIPROCESSING)
65                        _Message_queue_Core_message_queue_mp_support,
66                      #else
67                        NULL,
68                      #endif
69                      count,
70                      &lock_context
71                    );
72      return
73        _Message_queue_Translate_core_message_queue_return_code( core_status );
74
75#if defined(RTEMS_MULTIPROCESSING)
76    case OBJECTS_REMOTE:
77      _Thread_Executing->Wait.return_argument = count;
78
79      return
80        _Message_queue_MP_Send_request_packet(
81          MESSAGE_QUEUE_MP_BROADCAST_REQUEST,
82          id,
83          buffer,
84          &size,
85          0,                               /* option_set not used */
86          MPCI_DEFAULT_TIMEOUT
87        );
88#endif
89
90    case OBJECTS_ERROR:
91      break;
92  }
93  return RTEMS_INVALID_ID;
94}
Note: See TracBrowser for help on using the repository browser.