summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/sh/rtems/score/cpuatomic.h
blob: 78b62ff1badbbf3e31ca1d33749f868fd1d1efa3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/**
 * @file  rtems/score/cpuatomic.h
 *
 * This include file implements the atomic operations for SH and defines
 * atomic data types which are used by the atomic operations API file. This
 * file should use fixed name cpuatomic.h and should be included in atomic
 * operations API file atomic.h. If the architecture works at the UP mode it
 * will use a generic atomic ops using disable/enable-IRQ simulated. If the
 * the architecture works at SMP mode, most of the parts of implementations
 * are imported from FreeBSD kernel.
 */

#ifndef _RTEMS_SCORE_ATOMIC_CPU_H
#define _RTEMS_SCORE_ATOMIC_CPU_H

#include <rtems/score/genericcpuatomic.h>

#ifdef __cplusplus
extern "C" {
#endif

/**
 * @defgroup RTEMS atomic implementation
 *
 */

/**@{*/

#if !defined(RTEMS_SMP)
#include <rtems/score/genericatomicops.h>
#else
#endif

#ifdef __cplusplus
}
#endif

/**@}*/
#endif
/*  end of include file */