source: rtems/cpukit/score/cpu/arm/armv4-sync-synchronize.c @ 6d734bae

4.11
Last change on this file since 6d734bae was 6d734bae, checked in by Sebastian Huber <sebastian.huber@…>, on 09/01/15 at 07:47:12

arm: Replace sync_synchronize() implementation

  • Property mode set to 100644
File size: 437 bytes
Line 
1/*
2 * Copyright (c) 2015 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.org/license/LICENSE.
13 */
14
15#include <rtems/score/cpu.h>
16
17void __sync_synchronize( void )
18{
19  _ARM_Data_memory_barrier();
20}
Note: See TracBrowser for help on using the repository browser.