source: rtems/testsuites/sptests/splinkersets01/items.c @ 21d73655

5
Last change on this file since 21d73655 was 21d73655, checked in by Sebastian Huber <sebastian.huber@…>, on 08/10/16 at 07:54:13

sptests/splinkersets01: Fix for small-data area

  • Property mode set to 100644
File size: 703 bytes
Line 
1/*
2 * Copyright (c) 2015, 2016 embedded brains GmbH.  All rights reserved.
3 *
4 *  embedded brains GmbH
5 *  Dornierstr. 4
6 *  82178 Puchheim
7 *  Germany
8 *  <rtems@embedded-brains.de>
9 *
10 * The license and distribution terms for this file may be
11 * found in the file LICENSE in this distribution or at
12 * http://www.rtems.com/license/LICENSE.
13 */
14
15#ifdef HAVE_CONFIG_H
16  #include "config.h"
17#endif
18
19#include "splinkersets01.h"
20
21RTEMS_LINKER_RWSET_ITEM_ORDERED(test_rw, const int *, a1, 1) = &a[1];
22
23RTEMS_LINKER_ROSET_ITEM_ORDERED(test_ro, const int *, ca2, OC) = &ca[2];
24
25int content_rw_1;
26char content_rw_2;
27char content_rw_3;
28
29const int content_ro_1;
30const char content_ro_2;
31const char content_ro_3;
Note: See TracBrowser for help on using the repository browser.