source: rtems/c/src/optman/rtems/no-msg.c @ ff114dc5

4.104.114.84.95
Last change on this file since ff114dc5 was ff114dc5, checked in by Joel Sherrill <joel.sherrill@…>, on 05/09/07 at 18:47:03

2007-05-09 Joel Sherrill <joel.sherrill@…>

  • optman/Makefile.am, optman/preinstall.am, optman/rtems/no-dpmem.c, optman/rtems/no-event.c, optman/rtems/no-mp.c, optman/rtems/no-msg.c, optman/rtems/no-part.c, optman/rtems/no-region.c, optman/rtems/no-rtmon.c, optman/rtems/no-sem.c, optman/rtems/no-signal.c, optman/rtems/no-timer.c, optman/sapi/no-ext.c: Add optional manager stub for Barrier. Simplify other optional managers so using them reduces application size instead of increasing it.
  • optman/rtems/no-barrier.c: New file.
  • Property mode set to 100644
File size: 758 bytes
Line 
1/*
2 *  Message Queue Manager
3 *
4 *
5 *  COPYRIGHT (c) 1989-1999.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.rtems.com/license/LICENSE.
11 *
12 *  $Id$
13 */
14
15#include <rtems/system.h>
16#include <rtems/rtems/status.h>
17#include <rtems/rtems/attr.h>
18#include <rtems/score/chain.h>
19#include <rtems/score/isr.h>
20#include <rtems/rtems/message.h>
21#include <rtems/score/object.h>
22#include <rtems/rtems/options.h>
23#include <rtems/score/states.h>
24#include <rtems/score/thread.h>
25#include <rtems/score/wkspace.h>
26#include <rtems/score/interr.h>
27
28void _Message_queue_Manager_initialization(
29  uint32_t   maximum_message_queues
30)
31{
32}
Note: See TracBrowser for help on using the repository browser.