summaryrefslogtreecommitdiffstats
path: root/cpukit/score/cpu/m68k
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-09-23 06:52:33 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-09-23 06:59:59 +0200
commit75a6584a43a9ab4170376d31fe4041bbaaa7f547 (patch)
treef8e7d7dede0664a23e7c559125ca3196241e2335 /cpukit/score/cpu/m68k
parentlibdl: Fix cache corruption bugs. (diff)
downloadrtems-75a6584a43a9ab4170376d31fe4041bbaaa7f547.tar.bz2
score: Fix C/C++ compatibility issue
Only use CPU_Per_CPU_control if it contains at least one filed. In GNU C empty structures have a size of zero. In C++ structures have a non-zero size. In case CPU_PER_CPU_CONTROL_SIZE is defined to zero, then this structure is not used anymore. Close #2789.
Diffstat (limited to 'cpukit/score/cpu/m68k')
-rw-r--r--cpukit/score/cpu/m68k/rtems/score/cpu.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/cpukit/score/cpu/m68k/rtems/score/cpu.h b/cpukit/score/cpu/m68k/rtems/score/cpu.h
index 913bb78a71..4f81463efd 100644
--- a/cpukit/score/cpu/m68k/rtems/score/cpu.h
+++ b/cpukit/score/cpu/m68k/rtems/score/cpu.h
@@ -125,10 +125,6 @@ extern "C" {
/* structures */
-typedef struct {
- /* There is no CPU specific per-CPU state */
-} CPU_Per_CPU_control;
-
/*
* Basic integer context for the m68k family.
*/