source: rtems/cpukit/score/src/mpcidefault.c @ 1d9f509e

5
Last change on this file since 1d9f509e was 1d9f509e, checked in by Sebastian Huber <sebastian.huber@…>, on 12/12/19 at 07:43:06

config: Statically allocate MP thread proxies

Update #3735.

  • Property mode set to 100644
File size: 1000 bytes
Line 
1/**
2 * @file
3 *
4 * @brief Multiprocessing Communications Interface (MPCI) Default Configuration
5 * @ingroup RTEMSScoreMPCI
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/score/mpci.h>
22#include <rtems/score/stack.h>
23#include <rtems/score/thread.h>
24
25Thread_Configured_proxy_control * const _Thread_MP_Proxies;
26
27const MPCI_Configuration _MPCI_Configuration = {
28  1,                        /* local node number */
29  1,                        /* maximum number nodes in system */
30  0,                        /* maximum number global objects */
31  0,                        /* maximum number proxies */
32  STACK_MINIMUM_SIZE,       /* MPCI receive server stack size */
33  NULL                      /* pointer to MPCI address table */
34};
Note: See TracBrowser for help on using the repository browser.