summaryrefslogtreecommitdiffstats
path: root/cpukit/include/rtems/score
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2017-12-23 18:18:56 +1100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-01-25 08:45:26 +0100
commit2afb22b7e1ebcbe40373ff7e0efae7d207c655a9 (patch)
tree44759efe9374f13200a97e96d91bd9a2b7e5ce2a /cpukit/include/rtems/score
parentMAINTAINERS: Add myself to Write After Approval. (diff)
downloadrtems-2afb22b7e1ebcbe40373ff7e0efae7d207c655a9.tar.bz2
Remove make preinstall
A speciality of the RTEMS build system was the make preinstall step. It copied header files from arbitrary locations into the build tree. The header files were included via the -Bsome/build/tree/path GCC command line option. This has at least seven problems: * The make preinstall step itself needs time and disk space. * Errors in header files show up in the build tree copy. This makes it hard for editors to open the right file to fix the error. * There is no clear relationship between source and build tree header files. This makes an audit of the build process difficult. * The visibility of all header files in the build tree makes it difficult to enforce API barriers. For example it is discouraged to use BSP-specifics in the cpukit. * An introduction of a new build system is difficult. * Include paths specified by the -B option are system headers. This may suppress warnings. * The parallel build had sporadic failures on some hosts. This patch removes the make preinstall step. All installed header files are moved to dedicated include directories in the source tree. Let @RTEMS_CPU@ be the target architecture, e.g. arm, powerpc, sparc, etc. Let @RTEMS_BSP_FAMILIY@ be a BSP family base directory, e.g. erc32, imx, qoriq, etc. The new cpukit include directories are: * cpukit/include * cpukit/score/cpu/@RTEMS_CPU@/include * cpukit/libnetworking The new BSP include directories are: * bsps/include * bsps/@RTEMS_CPU@/include * bsps/@RTEMS_CPU@/@RTEMS_BSP_FAMILIY@/include There are build tree include directories for generated files. The include directory order favours the most general header file, e.g. it is not possible to override general header files via the include path order. The "bootstrap -p" option was removed. The new "bootstrap -H" option should be used to regenerate the "headers.am" files. Update #3254.
Diffstat (limited to '')
-rw-r--r--cpukit/include/rtems/score/address.h (renamed from cpukit/score/include/rtems/score/address.h)0
-rw-r--r--cpukit/include/rtems/score/apimutex.h (renamed from cpukit/score/include/rtems/score/apimutex.h)0
-rw-r--r--cpukit/include/rtems/score/assert.h (renamed from cpukit/score/include/rtems/score/assert.h)0
-rw-r--r--cpukit/include/rtems/score/atomic.h (renamed from cpukit/score/include/rtems/score/atomic.h)0
-rw-r--r--cpukit/include/rtems/score/basedefs.h (renamed from cpukit/score/include/rtems/score/basedefs.h)0
-rw-r--r--cpukit/include/rtems/score/chain.h (renamed from cpukit/score/include/rtems/score/chain.h)0
-rw-r--r--cpukit/include/rtems/score/chainimpl.h (renamed from cpukit/score/include/rtems/score/chainimpl.h)0
-rw-r--r--cpukit/include/rtems/score/context.h (renamed from cpukit/score/include/rtems/score/context.h)0
-rw-r--r--cpukit/include/rtems/score/copyrt.h (renamed from cpukit/score/include/rtems/score/copyrt.h)0
-rw-r--r--cpukit/include/rtems/score/corebarrier.h (renamed from cpukit/score/include/rtems/score/corebarrier.h)0
-rw-r--r--cpukit/include/rtems/score/corebarrierimpl.h (renamed from cpukit/score/include/rtems/score/corebarrierimpl.h)0
-rw-r--r--cpukit/include/rtems/score/coremsg.h (renamed from cpukit/score/include/rtems/score/coremsg.h)0
-rw-r--r--cpukit/include/rtems/score/coremsgimpl.h (renamed from cpukit/score/include/rtems/score/coremsgimpl.h)0
-rw-r--r--cpukit/include/rtems/score/coremutex.h (renamed from cpukit/score/include/rtems/score/coremutex.h)0
-rw-r--r--cpukit/include/rtems/score/coremuteximpl.h (renamed from cpukit/score/include/rtems/score/coremuteximpl.h)0
-rw-r--r--cpukit/include/rtems/score/corerwlockimpl.h (renamed from cpukit/score/include/rtems/score/corerwlockimpl.h)0
-rw-r--r--cpukit/include/rtems/score/coresem.h (renamed from cpukit/score/include/rtems/score/coresem.h)0
-rw-r--r--cpukit/include/rtems/score/coresemimpl.h (renamed from cpukit/score/include/rtems/score/coresemimpl.h)0
-rw-r--r--cpukit/include/rtems/score/cpustdatomic.h (renamed from cpukit/score/include/rtems/score/cpustdatomic.h)0
-rw-r--r--cpukit/include/rtems/score/freechain.h (renamed from cpukit/score/include/rtems/score/freechain.h)0
-rw-r--r--cpukit/include/rtems/score/heap.h (renamed from cpukit/score/include/rtems/score/heap.h)0
-rw-r--r--cpukit/include/rtems/score/heapimpl.h (renamed from cpukit/score/include/rtems/score/heapimpl.h)0
-rw-r--r--cpukit/include/rtems/score/interr.h (renamed from cpukit/score/include/rtems/score/interr.h)0
-rw-r--r--cpukit/include/rtems/score/io.h (renamed from cpukit/score/include/rtems/score/io.h)0
-rw-r--r--cpukit/include/rtems/score/isr.h (renamed from cpukit/score/include/rtems/score/isr.h)0
-rw-r--r--cpukit/include/rtems/score/isrlevel.h (renamed from cpukit/score/include/rtems/score/isrlevel.h)0
-rw-r--r--cpukit/include/rtems/score/isrlock.h (renamed from cpukit/score/include/rtems/score/isrlock.h)0
-rw-r--r--cpukit/include/rtems/score/mpci.h (renamed from cpukit/score/include/rtems/score/mpci.h)0
-rw-r--r--cpukit/include/rtems/score/mpciimpl.h (renamed from cpukit/score/include/rtems/score/mpciimpl.h)0
-rw-r--r--cpukit/include/rtems/score/mppkt.h (renamed from cpukit/score/include/rtems/score/mppkt.h)0
-rw-r--r--cpukit/include/rtems/score/mrsp.h (renamed from cpukit/score/include/rtems/score/mrsp.h)0
-rw-r--r--cpukit/include/rtems/score/mrspimpl.h (renamed from cpukit/score/include/rtems/score/mrspimpl.h)0
-rw-r--r--cpukit/include/rtems/score/muteximpl.h (renamed from cpukit/score/include/rtems/score/muteximpl.h)0
-rw-r--r--cpukit/include/rtems/score/object.h (renamed from cpukit/score/include/rtems/score/object.h)0
-rw-r--r--cpukit/include/rtems/score/objectimpl.h (renamed from cpukit/score/include/rtems/score/objectimpl.h)0
-rw-r--r--cpukit/include/rtems/score/objectmp.h (renamed from cpukit/score/include/rtems/score/objectmp.h)0
-rw-r--r--cpukit/include/rtems/score/onceimpl.h (renamed from cpukit/score/include/rtems/score/onceimpl.h)0
-rw-r--r--cpukit/include/rtems/score/percpu.h (renamed from cpukit/score/include/rtems/score/percpu.h)0
-rw-r--r--cpukit/include/rtems/score/priority.h (renamed from cpukit/score/include/rtems/score/priority.h)0
-rw-r--r--cpukit/include/rtems/score/prioritybitmap.h (renamed from cpukit/score/include/rtems/score/prioritybitmap.h)0
-rw-r--r--cpukit/include/rtems/score/prioritybitmapimpl.h (renamed from cpukit/score/include/rtems/score/prioritybitmapimpl.h)0
-rw-r--r--cpukit/include/rtems/score/priorityimpl.h (renamed from cpukit/score/include/rtems/score/priorityimpl.h)0
-rw-r--r--cpukit/include/rtems/score/processormask.h (renamed from cpukit/score/include/rtems/score/processormask.h)0
-rw-r--r--cpukit/include/rtems/score/profiling.h (renamed from cpukit/score/include/rtems/score/profiling.h)0
-rw-r--r--cpukit/include/rtems/score/protectedheap.h (renamed from cpukit/score/include/rtems/score/protectedheap.h)0
-rw-r--r--cpukit/include/rtems/score/rbtree.h (renamed from cpukit/score/include/rtems/score/rbtree.h)0
-rw-r--r--cpukit/include/rtems/score/rbtreeimpl.h (renamed from cpukit/score/include/rtems/score/rbtreeimpl.h)0
-rw-r--r--cpukit/include/rtems/score/scheduler.h (renamed from cpukit/score/include/rtems/score/scheduler.h)0
-rw-r--r--cpukit/include/rtems/score/schedulercbs.h (renamed from cpukit/score/include/rtems/score/schedulercbs.h)0
-rw-r--r--cpukit/include/rtems/score/schedulercbsimpl.h (renamed from cpukit/score/include/rtems/score/schedulercbsimpl.h)0
-rw-r--r--cpukit/include/rtems/score/scheduleredf.h (renamed from cpukit/score/include/rtems/score/scheduleredf.h)0
-rw-r--r--cpukit/include/rtems/score/scheduleredfimpl.h (renamed from cpukit/score/include/rtems/score/scheduleredfimpl.h)0
-rw-r--r--cpukit/include/rtems/score/scheduleredfsmp.h (renamed from cpukit/score/include/rtems/score/scheduleredfsmp.h)0
-rw-r--r--cpukit/include/rtems/score/schedulerimpl.h (renamed from cpukit/score/include/rtems/score/schedulerimpl.h)0
-rw-r--r--cpukit/include/rtems/score/schedulernode.h (renamed from cpukit/score/include/rtems/score/schedulernode.h)0
-rw-r--r--cpukit/include/rtems/score/schedulernodeimpl.h (renamed from cpukit/score/include/rtems/score/schedulernodeimpl.h)0
-rw-r--r--cpukit/include/rtems/score/schedulerpriority.h (renamed from cpukit/score/include/rtems/score/schedulerpriority.h)0
-rw-r--r--cpukit/include/rtems/score/schedulerpriorityaffinitysmp.h (renamed from cpukit/score/include/rtems/score/schedulerpriorityaffinitysmp.h)0
-rw-r--r--cpukit/include/rtems/score/schedulerpriorityimpl.h (renamed from cpukit/score/include/rtems/score/schedulerpriorityimpl.h)0
-rw-r--r--cpukit/include/rtems/score/schedulerprioritysmp.h (renamed from cpukit/score/include/rtems/score/schedulerprioritysmp.h)0
-rw-r--r--cpukit/include/rtems/score/schedulerprioritysmpimpl.h (renamed from cpukit/score/include/rtems/score/schedulerprioritysmpimpl.h)0
-rw-r--r--cpukit/include/rtems/score/schedulersimple.h (renamed from cpukit/score/include/rtems/score/schedulersimple.h)0
-rw-r--r--cpukit/include/rtems/score/schedulersimpleimpl.h (renamed from cpukit/score/include/rtems/score/schedulersimpleimpl.h)0
-rw-r--r--cpukit/include/rtems/score/schedulersimplesmp.h (renamed from cpukit/score/include/rtems/score/schedulersimplesmp.h)0
-rw-r--r--cpukit/include/rtems/score/schedulersmp.h (renamed from cpukit/score/include/rtems/score/schedulersmp.h)0
-rw-r--r--cpukit/include/rtems/score/schedulersmpimpl.h (renamed from cpukit/score/include/rtems/score/schedulersmpimpl.h)0
-rw-r--r--cpukit/include/rtems/score/schedulerstrongapa.h (renamed from cpukit/score/include/rtems/score/schedulerstrongapa.h)0
-rw-r--r--cpukit/include/rtems/score/semaphoreimpl.h (renamed from cpukit/score/include/rtems/score/semaphoreimpl.h)0
-rw-r--r--cpukit/include/rtems/score/smp.h (renamed from cpukit/score/include/rtems/score/smp.h)0
-rw-r--r--cpukit/include/rtems/score/smpbarrier.h (renamed from cpukit/score/include/rtems/score/smpbarrier.h)0
-rw-r--r--cpukit/include/rtems/score/smpimpl.h (renamed from cpukit/score/include/rtems/score/smpimpl.h)0
-rw-r--r--cpukit/include/rtems/score/smplock.h (renamed from cpukit/score/include/rtems/score/smplock.h)0
-rw-r--r--cpukit/include/rtems/score/smplockmcs.h (renamed from cpukit/score/include/rtems/score/smplockmcs.h)0
-rw-r--r--cpukit/include/rtems/score/smplockseq.h (renamed from cpukit/score/include/rtems/score/smplockseq.h)0
-rw-r--r--cpukit/include/rtems/score/smplockstats.h (renamed from cpukit/score/include/rtems/score/smplockstats.h)0
-rw-r--r--cpukit/include/rtems/score/smplockticket.h (renamed from cpukit/score/include/rtems/score/smplockticket.h)0
-rw-r--r--cpukit/include/rtems/score/stack.h (renamed from cpukit/score/include/rtems/score/stack.h)0
-rw-r--r--cpukit/include/rtems/score/stackimpl.h (renamed from cpukit/score/include/rtems/score/stackimpl.h)0
-rw-r--r--cpukit/include/rtems/score/states.h (renamed from cpukit/score/include/rtems/score/states.h)0
-rw-r--r--cpukit/include/rtems/score/statesimpl.h (renamed from cpukit/score/include/rtems/score/statesimpl.h)0
-rw-r--r--cpukit/include/rtems/score/status.h (renamed from cpukit/score/include/rtems/score/status.h)0
-rw-r--r--cpukit/include/rtems/score/sysstate.h (renamed from cpukit/score/include/rtems/score/sysstate.h)0
-rw-r--r--cpukit/include/rtems/score/thread.h (renamed from cpukit/score/include/rtems/score/thread.h)0
-rw-r--r--cpukit/include/rtems/score/threaddispatch.h (renamed from cpukit/score/include/rtems/score/threaddispatch.h)0
-rw-r--r--cpukit/include/rtems/score/threadimpl.h (renamed from cpukit/score/include/rtems/score/threadimpl.h)0
-rw-r--r--cpukit/include/rtems/score/threadmp.h (renamed from cpukit/score/include/rtems/score/threadmp.h)0
-rw-r--r--cpukit/include/rtems/score/threadq.h (renamed from cpukit/score/include/rtems/score/threadq.h)0
-rw-r--r--cpukit/include/rtems/score/threadqimpl.h (renamed from cpukit/score/include/rtems/score/threadqimpl.h)0
-rw-r--r--cpukit/include/rtems/score/timecounter.h (renamed from cpukit/score/include/rtems/score/timecounter.h)0
-rw-r--r--cpukit/include/rtems/score/timecounterimpl.h (renamed from cpukit/score/include/rtems/score/timecounterimpl.h)0
-rw-r--r--cpukit/include/rtems/score/timespec.h (renamed from cpukit/score/include/rtems/score/timespec.h)0
-rw-r--r--cpukit/include/rtems/score/timestamp.h (renamed from cpukit/score/include/rtems/score/timestamp.h)0
-rw-r--r--cpukit/include/rtems/score/tls.h (renamed from cpukit/score/include/rtems/score/tls.h)0
-rw-r--r--cpukit/include/rtems/score/tod.h (renamed from cpukit/score/include/rtems/score/tod.h)0
-rw-r--r--cpukit/include/rtems/score/todimpl.h (renamed from cpukit/score/include/rtems/score/todimpl.h)0
-rw-r--r--cpukit/include/rtems/score/userext.h (renamed from cpukit/score/include/rtems/score/userext.h)0
-rw-r--r--cpukit/include/rtems/score/userextimpl.h (renamed from cpukit/score/include/rtems/score/userextimpl.h)0
-rw-r--r--cpukit/include/rtems/score/watchdog.h (renamed from cpukit/score/include/rtems/score/watchdog.h)0
-rw-r--r--cpukit/include/rtems/score/watchdogimpl.h (renamed from cpukit/score/include/rtems/score/watchdogimpl.h)0
-rw-r--r--cpukit/include/rtems/score/wkspace.h (renamed from cpukit/score/include/rtems/score/wkspace.h)0
100 files changed, 0 insertions, 0 deletions
diff --git a/cpukit/score/include/rtems/score/address.h b/cpukit/include/rtems/score/address.h
index 8f38f7c2dc..8f38f7c2dc 100644
--- a/cpukit/score/include/rtems/score/address.h
+++ b/cpukit/include/rtems/score/address.h
diff --git a/cpukit/score/include/rtems/score/apimutex.h b/cpukit/include/rtems/score/apimutex.h
index f43edf23f4..f43edf23f4 100644
--- a/cpukit/score/include/rtems/score/apimutex.h
+++ b/cpukit/include/rtems/score/apimutex.h
diff --git a/cpukit/score/include/rtems/score/assert.h b/cpukit/include/rtems/score/assert.h
index d4432838ce..d4432838ce 100644
--- a/cpukit/score/include/rtems/score/assert.h
+++ b/cpukit/include/rtems/score/assert.h
diff --git a/cpukit/score/include/rtems/score/atomic.h b/cpukit/include/rtems/score/atomic.h
index 526926926f..526926926f 100644
--- a/cpukit/score/include/rtems/score/atomic.h
+++ b/cpukit/include/rtems/score/atomic.h
diff --git a/cpukit/score/include/rtems/score/basedefs.h b/cpukit/include/rtems/score/basedefs.h
index 4e48d226e8..4e48d226e8 100644
--- a/cpukit/score/include/rtems/score/basedefs.h
+++ b/cpukit/include/rtems/score/basedefs.h
diff --git a/cpukit/score/include/rtems/score/chain.h b/cpukit/include/rtems/score/chain.h
index e358262e6e..e358262e6e 100644
--- a/cpukit/score/include/rtems/score/chain.h
+++ b/cpukit/include/rtems/score/chain.h
diff --git a/cpukit/score/include/rtems/score/chainimpl.h b/cpukit/include/rtems/score/chainimpl.h
index c94c051198..c94c051198 100644
--- a/cpukit/score/include/rtems/score/chainimpl.h
+++ b/cpukit/include/rtems/score/chainimpl.h
diff --git a/cpukit/score/include/rtems/score/context.h b/cpukit/include/rtems/score/context.h
index 990a602396..990a602396 100644
--- a/cpukit/score/include/rtems/score/context.h
+++ b/cpukit/include/rtems/score/context.h
diff --git a/cpukit/score/include/rtems/score/copyrt.h b/cpukit/include/rtems/score/copyrt.h
index 17c925a008..17c925a008 100644
--- a/cpukit/score/include/rtems/score/copyrt.h
+++ b/cpukit/include/rtems/score/copyrt.h
diff --git a/cpukit/score/include/rtems/score/corebarrier.h b/cpukit/include/rtems/score/corebarrier.h
index ba706be3e3..ba706be3e3 100644
--- a/cpukit/score/include/rtems/score/corebarrier.h
+++ b/cpukit/include/rtems/score/corebarrier.h
diff --git a/cpukit/score/include/rtems/score/corebarrierimpl.h b/cpukit/include/rtems/score/corebarrierimpl.h
index d5d63659d0..d5d63659d0 100644
--- a/cpukit/score/include/rtems/score/corebarrierimpl.h
+++ b/cpukit/include/rtems/score/corebarrierimpl.h
diff --git a/cpukit/score/include/rtems/score/coremsg.h b/cpukit/include/rtems/score/coremsg.h
index 8d25529fdc..8d25529fdc 100644
--- a/cpukit/score/include/rtems/score/coremsg.h
+++ b/cpukit/include/rtems/score/coremsg.h
diff --git a/cpukit/score/include/rtems/score/coremsgimpl.h b/cpukit/include/rtems/score/coremsgimpl.h
index e33e3308b2..e33e3308b2 100644
--- a/cpukit/score/include/rtems/score/coremsgimpl.h
+++ b/cpukit/include/rtems/score/coremsgimpl.h
diff --git a/cpukit/score/include/rtems/score/coremutex.h b/cpukit/include/rtems/score/coremutex.h
index fd1f27c697..fd1f27c697 100644
--- a/cpukit/score/include/rtems/score/coremutex.h
+++ b/cpukit/include/rtems/score/coremutex.h
diff --git a/cpukit/score/include/rtems/score/coremuteximpl.h b/cpukit/include/rtems/score/coremuteximpl.h
index 78fafca6e1..78fafca6e1 100644
--- a/cpukit/score/include/rtems/score/coremuteximpl.h
+++ b/cpukit/include/rtems/score/coremuteximpl.h
diff --git a/cpukit/score/include/rtems/score/corerwlockimpl.h b/cpukit/include/rtems/score/corerwlockimpl.h
index 942e8c8d75..942e8c8d75 100644
--- a/cpukit/score/include/rtems/score/corerwlockimpl.h
+++ b/cpukit/include/rtems/score/corerwlockimpl.h
diff --git a/cpukit/score/include/rtems/score/coresem.h b/cpukit/include/rtems/score/coresem.h
index f9d3ac8fd5..f9d3ac8fd5 100644
--- a/cpukit/score/include/rtems/score/coresem.h
+++ b/cpukit/include/rtems/score/coresem.h
diff --git a/cpukit/score/include/rtems/score/coresemimpl.h b/cpukit/include/rtems/score/coresemimpl.h
index 00f77e61dd..00f77e61dd 100644
--- a/cpukit/score/include/rtems/score/coresemimpl.h
+++ b/cpukit/include/rtems/score/coresemimpl.h
diff --git a/cpukit/score/include/rtems/score/cpustdatomic.h b/cpukit/include/rtems/score/cpustdatomic.h
index 6c6db8d279..6c6db8d279 100644
--- a/cpukit/score/include/rtems/score/cpustdatomic.h
+++ b/cpukit/include/rtems/score/cpustdatomic.h
diff --git a/cpukit/score/include/rtems/score/freechain.h b/cpukit/include/rtems/score/freechain.h
index 1540c0e2a1..1540c0e2a1 100644
--- a/cpukit/score/include/rtems/score/freechain.h
+++ b/cpukit/include/rtems/score/freechain.h
diff --git a/cpukit/score/include/rtems/score/heap.h b/cpukit/include/rtems/score/heap.h
index 60cb3be99d..60cb3be99d 100644
--- a/cpukit/score/include/rtems/score/heap.h
+++ b/cpukit/include/rtems/score/heap.h
diff --git a/cpukit/score/include/rtems/score/heapimpl.h b/cpukit/include/rtems/score/heapimpl.h
index a8948edd6f..a8948edd6f 100644
--- a/cpukit/score/include/rtems/score/heapimpl.h
+++ b/cpukit/include/rtems/score/heapimpl.h
diff --git a/cpukit/score/include/rtems/score/interr.h b/cpukit/include/rtems/score/interr.h
index 3144952716..3144952716 100644
--- a/cpukit/score/include/rtems/score/interr.h
+++ b/cpukit/include/rtems/score/interr.h
diff --git a/cpukit/score/include/rtems/score/io.h b/cpukit/include/rtems/score/io.h
index ae3c57f031..ae3c57f031 100644
--- a/cpukit/score/include/rtems/score/io.h
+++ b/cpukit/include/rtems/score/io.h
diff --git a/cpukit/score/include/rtems/score/isr.h b/cpukit/include/rtems/score/isr.h
index d9c03b807f..d9c03b807f 100644
--- a/cpukit/score/include/rtems/score/isr.h
+++ b/cpukit/include/rtems/score/isr.h
diff --git a/cpukit/score/include/rtems/score/isrlevel.h b/cpukit/include/rtems/score/isrlevel.h
index abfb1b67fc..abfb1b67fc 100644
--- a/cpukit/score/include/rtems/score/isrlevel.h
+++ b/cpukit/include/rtems/score/isrlevel.h
diff --git a/cpukit/score/include/rtems/score/isrlock.h b/cpukit/include/rtems/score/isrlock.h
index 7dd2f29000..7dd2f29000 100644
--- a/cpukit/score/include/rtems/score/isrlock.h
+++ b/cpukit/include/rtems/score/isrlock.h
diff --git a/cpukit/score/include/rtems/score/mpci.h b/cpukit/include/rtems/score/mpci.h
index c20b45c3e1..c20b45c3e1 100644
--- a/cpukit/score/include/rtems/score/mpci.h
+++ b/cpukit/include/rtems/score/mpci.h
diff --git a/cpukit/score/include/rtems/score/mpciimpl.h b/cpukit/include/rtems/score/mpciimpl.h
index eb03a1d7b3..eb03a1d7b3 100644
--- a/cpukit/score/include/rtems/score/mpciimpl.h
+++ b/cpukit/include/rtems/score/mpciimpl.h
diff --git a/cpukit/score/include/rtems/score/mppkt.h b/cpukit/include/rtems/score/mppkt.h
index 573abf574b..573abf574b 100644
--- a/cpukit/score/include/rtems/score/mppkt.h
+++ b/cpukit/include/rtems/score/mppkt.h
diff --git a/cpukit/score/include/rtems/score/mrsp.h b/cpukit/include/rtems/score/mrsp.h
index 85cbff784f..85cbff784f 100644
--- a/cpukit/score/include/rtems/score/mrsp.h
+++ b/cpukit/include/rtems/score/mrsp.h
diff --git a/cpukit/score/include/rtems/score/mrspimpl.h b/cpukit/include/rtems/score/mrspimpl.h
index b9c7441401..b9c7441401 100644
--- a/cpukit/score/include/rtems/score/mrspimpl.h
+++ b/cpukit/include/rtems/score/mrspimpl.h
diff --git a/cpukit/score/include/rtems/score/muteximpl.h b/cpukit/include/rtems/score/muteximpl.h
index 5fd4f5e8be..5fd4f5e8be 100644
--- a/cpukit/score/include/rtems/score/muteximpl.h
+++ b/cpukit/include/rtems/score/muteximpl.h
diff --git a/cpukit/score/include/rtems/score/object.h b/cpukit/include/rtems/score/object.h
index 6789c61fea..6789c61fea 100644
--- a/cpukit/score/include/rtems/score/object.h
+++ b/cpukit/include/rtems/score/object.h
diff --git a/cpukit/score/include/rtems/score/objectimpl.h b/cpukit/include/rtems/score/objectimpl.h
index cc5820785c..cc5820785c 100644
--- a/cpukit/score/include/rtems/score/objectimpl.h
+++ b/cpukit/include/rtems/score/objectimpl.h
diff --git a/cpukit/score/include/rtems/score/objectmp.h b/cpukit/include/rtems/score/objectmp.h
index 5c9f4f74e3..5c9f4f74e3 100644
--- a/cpukit/score/include/rtems/score/objectmp.h
+++ b/cpukit/include/rtems/score/objectmp.h
diff --git a/cpukit/score/include/rtems/score/onceimpl.h b/cpukit/include/rtems/score/onceimpl.h
index 60f1378506..60f1378506 100644
--- a/cpukit/score/include/rtems/score/onceimpl.h
+++ b/cpukit/include/rtems/score/onceimpl.h
diff --git a/cpukit/score/include/rtems/score/percpu.h b/cpukit/include/rtems/score/percpu.h
index 00528b5ce3..00528b5ce3 100644
--- a/cpukit/score/include/rtems/score/percpu.h
+++ b/cpukit/include/rtems/score/percpu.h
diff --git a/cpukit/score/include/rtems/score/priority.h b/cpukit/include/rtems/score/priority.h
index 7a8ddba763..7a8ddba763 100644
--- a/cpukit/score/include/rtems/score/priority.h
+++ b/cpukit/include/rtems/score/priority.h
diff --git a/cpukit/score/include/rtems/score/prioritybitmap.h b/cpukit/include/rtems/score/prioritybitmap.h
index 40638dd628..40638dd628 100644
--- a/cpukit/score/include/rtems/score/prioritybitmap.h
+++ b/cpukit/include/rtems/score/prioritybitmap.h
diff --git a/cpukit/score/include/rtems/score/prioritybitmapimpl.h b/cpukit/include/rtems/score/prioritybitmapimpl.h
index 82c92eb5d6..82c92eb5d6 100644
--- a/cpukit/score/include/rtems/score/prioritybitmapimpl.h
+++ b/cpukit/include/rtems/score/prioritybitmapimpl.h
diff --git a/cpukit/score/include/rtems/score/priorityimpl.h b/cpukit/include/rtems/score/priorityimpl.h
index 3380983cb7..3380983cb7 100644
--- a/cpukit/score/include/rtems/score/priorityimpl.h
+++ b/cpukit/include/rtems/score/priorityimpl.h
diff --git a/cpukit/score/include/rtems/score/processormask.h b/cpukit/include/rtems/score/processormask.h
index a06aa2a56b..a06aa2a56b 100644
--- a/cpukit/score/include/rtems/score/processormask.h
+++ b/cpukit/include/rtems/score/processormask.h
diff --git a/cpukit/score/include/rtems/score/profiling.h b/cpukit/include/rtems/score/profiling.h
index 6ba5d2987f..6ba5d2987f 100644
--- a/cpukit/score/include/rtems/score/profiling.h
+++ b/cpukit/include/rtems/score/profiling.h
diff --git a/cpukit/score/include/rtems/score/protectedheap.h b/cpukit/include/rtems/score/protectedheap.h
index a08fa36cf3..a08fa36cf3 100644
--- a/cpukit/score/include/rtems/score/protectedheap.h
+++ b/cpukit/include/rtems/score/protectedheap.h
diff --git a/cpukit/score/include/rtems/score/rbtree.h b/cpukit/include/rtems/score/rbtree.h
index 15a3bc8913..15a3bc8913 100644
--- a/cpukit/score/include/rtems/score/rbtree.h
+++ b/cpukit/include/rtems/score/rbtree.h
diff --git a/cpukit/score/include/rtems/score/rbtreeimpl.h b/cpukit/include/rtems/score/rbtreeimpl.h
index bf92e29228..bf92e29228 100644
--- a/cpukit/score/include/rtems/score/rbtreeimpl.h
+++ b/cpukit/include/rtems/score/rbtreeimpl.h
diff --git a/cpukit/score/include/rtems/score/scheduler.h b/cpukit/include/rtems/score/scheduler.h
index a6066c8e4a..a6066c8e4a 100644
--- a/cpukit/score/include/rtems/score/scheduler.h
+++ b/cpukit/include/rtems/score/scheduler.h
diff --git a/cpukit/score/include/rtems/score/schedulercbs.h b/cpukit/include/rtems/score/schedulercbs.h
index 635abce125..635abce125 100644
--- a/cpukit/score/include/rtems/score/schedulercbs.h
+++ b/cpukit/include/rtems/score/schedulercbs.h
diff --git a/cpukit/score/include/rtems/score/schedulercbsimpl.h b/cpukit/include/rtems/score/schedulercbsimpl.h
index ed75979f75..ed75979f75 100644
--- a/cpukit/score/include/rtems/score/schedulercbsimpl.h
+++ b/cpukit/include/rtems/score/schedulercbsimpl.h
diff --git a/cpukit/score/include/rtems/score/scheduleredf.h b/cpukit/include/rtems/score/scheduleredf.h
index 91c303ca56..91c303ca56 100644
--- a/cpukit/score/include/rtems/score/scheduleredf.h
+++ b/cpukit/include/rtems/score/scheduleredf.h
diff --git a/cpukit/score/include/rtems/score/scheduleredfimpl.h b/cpukit/include/rtems/score/scheduleredfimpl.h
index f6bd7d8384..f6bd7d8384 100644
--- a/cpukit/score/include/rtems/score/scheduleredfimpl.h
+++ b/cpukit/include/rtems/score/scheduleredfimpl.h
diff --git a/cpukit/score/include/rtems/score/scheduleredfsmp.h b/cpukit/include/rtems/score/scheduleredfsmp.h
index 018568190e..018568190e 100644
--- a/cpukit/score/include/rtems/score/scheduleredfsmp.h
+++ b/cpukit/include/rtems/score/scheduleredfsmp.h
diff --git a/cpukit/score/include/rtems/score/schedulerimpl.h b/cpukit/include/rtems/score/schedulerimpl.h
index 10c12242a9..10c12242a9 100644
--- a/cpukit/score/include/rtems/score/schedulerimpl.h
+++ b/cpukit/include/rtems/score/schedulerimpl.h
diff --git a/cpukit/score/include/rtems/score/schedulernode.h b/cpukit/include/rtems/score/schedulernode.h
index d62e983853..d62e983853 100644
--- a/cpukit/score/include/rtems/score/schedulernode.h
+++ b/cpukit/include/rtems/score/schedulernode.h
diff --git a/cpukit/score/include/rtems/score/schedulernodeimpl.h b/cpukit/include/rtems/score/schedulernodeimpl.h
index 8997b3f218..8997b3f218 100644
--- a/cpukit/score/include/rtems/score/schedulernodeimpl.h
+++ b/cpukit/include/rtems/score/schedulernodeimpl.h
diff --git a/cpukit/score/include/rtems/score/schedulerpriority.h b/cpukit/include/rtems/score/schedulerpriority.h
index f5ae66102d..f5ae66102d 100644
--- a/cpukit/score/include/rtems/score/schedulerpriority.h
+++ b/cpukit/include/rtems/score/schedulerpriority.h
diff --git a/cpukit/score/include/rtems/score/schedulerpriorityaffinitysmp.h b/cpukit/include/rtems/score/schedulerpriorityaffinitysmp.h
index d988d5752a..d988d5752a 100644
--- a/cpukit/score/include/rtems/score/schedulerpriorityaffinitysmp.h
+++ b/cpukit/include/rtems/score/schedulerpriorityaffinitysmp.h
diff --git a/cpukit/score/include/rtems/score/schedulerpriorityimpl.h b/cpukit/include/rtems/score/schedulerpriorityimpl.h
index 354065fac4..354065fac4 100644
--- a/cpukit/score/include/rtems/score/schedulerpriorityimpl.h
+++ b/cpukit/include/rtems/score/schedulerpriorityimpl.h
diff --git a/cpukit/score/include/rtems/score/schedulerprioritysmp.h b/cpukit/include/rtems/score/schedulerprioritysmp.h
index 6671da5b7a..6671da5b7a 100644
--- a/cpukit/score/include/rtems/score/schedulerprioritysmp.h
+++ b/cpukit/include/rtems/score/schedulerprioritysmp.h
diff --git a/cpukit/score/include/rtems/score/schedulerprioritysmpimpl.h b/cpukit/include/rtems/score/schedulerprioritysmpimpl.h
index 17d6e552f3..17d6e552f3 100644
--- a/cpukit/score/include/rtems/score/schedulerprioritysmpimpl.h
+++ b/cpukit/include/rtems/score/schedulerprioritysmpimpl.h
diff --git a/cpukit/score/include/rtems/score/schedulersimple.h b/cpukit/include/rtems/score/schedulersimple.h
index 0d410d5676..0d410d5676 100644
--- a/cpukit/score/include/rtems/score/schedulersimple.h
+++ b/cpukit/include/rtems/score/schedulersimple.h
diff --git a/cpukit/score/include/rtems/score/schedulersimpleimpl.h b/cpukit/include/rtems/score/schedulersimpleimpl.h
index 3891839281..3891839281 100644
--- a/cpukit/score/include/rtems/score/schedulersimpleimpl.h
+++ b/cpukit/include/rtems/score/schedulersimpleimpl.h
diff --git a/cpukit/score/include/rtems/score/schedulersimplesmp.h b/cpukit/include/rtems/score/schedulersimplesmp.h
index bc75b205d5..bc75b205d5 100644
--- a/cpukit/score/include/rtems/score/schedulersimplesmp.h
+++ b/cpukit/include/rtems/score/schedulersimplesmp.h
diff --git a/cpukit/score/include/rtems/score/schedulersmp.h b/cpukit/include/rtems/score/schedulersmp.h
index 0bd899a6a6..0bd899a6a6 100644
--- a/cpukit/score/include/rtems/score/schedulersmp.h
+++ b/cpukit/include/rtems/score/schedulersmp.h
diff --git a/cpukit/score/include/rtems/score/schedulersmpimpl.h b/cpukit/include/rtems/score/schedulersmpimpl.h
index e152eb0878..e152eb0878 100644
--- a/cpukit/score/include/rtems/score/schedulersmpimpl.h
+++ b/cpukit/include/rtems/score/schedulersmpimpl.h
diff --git a/cpukit/score/include/rtems/score/schedulerstrongapa.h b/cpukit/include/rtems/score/schedulerstrongapa.h
index d961f20c68..d961f20c68 100644
--- a/cpukit/score/include/rtems/score/schedulerstrongapa.h
+++ b/cpukit/include/rtems/score/schedulerstrongapa.h
diff --git a/cpukit/score/include/rtems/score/semaphoreimpl.h b/cpukit/include/rtems/score/semaphoreimpl.h
index a7857db93e..a7857db93e 100644
--- a/cpukit/score/include/rtems/score/semaphoreimpl.h
+++ b/cpukit/include/rtems/score/semaphoreimpl.h
diff --git a/cpukit/score/include/rtems/score/smp.h b/cpukit/include/rtems/score/smp.h
index 469025e5dc..469025e5dc 100644
--- a/cpukit/score/include/rtems/score/smp.h
+++ b/cpukit/include/rtems/score/smp.h
diff --git a/cpukit/score/include/rtems/score/smpbarrier.h b/cpukit/include/rtems/score/smpbarrier.h
index fddf7bb1cd..fddf7bb1cd 100644
--- a/cpukit/score/include/rtems/score/smpbarrier.h
+++ b/cpukit/include/rtems/score/smpbarrier.h
diff --git a/cpukit/score/include/rtems/score/smpimpl.h b/cpukit/include/rtems/score/smpimpl.h
index 48e6a12498..48e6a12498 100644
--- a/cpukit/score/include/rtems/score/smpimpl.h
+++ b/cpukit/include/rtems/score/smpimpl.h
diff --git a/cpukit/score/include/rtems/score/smplock.h b/cpukit/include/rtems/score/smplock.h
index a156edfd92..a156edfd92 100644
--- a/cpukit/score/include/rtems/score/smplock.h
+++ b/cpukit/include/rtems/score/smplock.h
diff --git a/cpukit/score/include/rtems/score/smplockmcs.h b/cpukit/include/rtems/score/smplockmcs.h
index 5a1ad23dc9..5a1ad23dc9 100644
--- a/cpukit/score/include/rtems/score/smplockmcs.h
+++ b/cpukit/include/rtems/score/smplockmcs.h
diff --git a/cpukit/score/include/rtems/score/smplockseq.h b/cpukit/include/rtems/score/smplockseq.h
index 5daaee9c6e..5daaee9c6e 100644
--- a/cpukit/score/include/rtems/score/smplockseq.h
+++ b/cpukit/include/rtems/score/smplockseq.h
diff --git a/cpukit/score/include/rtems/score/smplockstats.h b/cpukit/include/rtems/score/smplockstats.h
index dd8e06c81d..dd8e06c81d 100644
--- a/cpukit/score/include/rtems/score/smplockstats.h
+++ b/cpukit/include/rtems/score/smplockstats.h
diff --git a/cpukit/score/include/rtems/score/smplockticket.h b/cpukit/include/rtems/score/smplockticket.h
index e04c4056a5..e04c4056a5 100644
--- a/cpukit/score/include/rtems/score/smplockticket.h
+++ b/cpukit/include/rtems/score/smplockticket.h
diff --git a/cpukit/score/include/rtems/score/stack.h b/cpukit/include/rtems/score/stack.h
index 9622495092..9622495092 100644
--- a/cpukit/score/include/rtems/score/stack.h
+++ b/cpukit/include/rtems/score/stack.h
diff --git a/cpukit/score/include/rtems/score/stackimpl.h b/cpukit/include/rtems/score/stackimpl.h
index 4c622345ff..4c622345ff 100644
--- a/cpukit/score/include/rtems/score/stackimpl.h
+++ b/cpukit/include/rtems/score/stackimpl.h
diff --git a/cpukit/score/include/rtems/score/states.h b/cpukit/include/rtems/score/states.h
index ba59af6907..ba59af6907 100644
--- a/cpukit/score/include/rtems/score/states.h
+++ b/cpukit/include/rtems/score/states.h
diff --git a/cpukit/score/include/rtems/score/statesimpl.h b/cpukit/include/rtems/score/statesimpl.h
index db462fbb9a..db462fbb9a 100644
--- a/cpukit/score/include/rtems/score/statesimpl.h
+++ b/cpukit/include/rtems/score/statesimpl.h
diff --git a/cpukit/score/include/rtems/score/status.h b/cpukit/include/rtems/score/status.h
index 5b154bb207..5b154bb207 100644
--- a/cpukit/score/include/rtems/score/status.h
+++ b/cpukit/include/rtems/score/status.h
diff --git a/cpukit/score/include/rtems/score/sysstate.h b/cpukit/include/rtems/score/sysstate.h
index 0e01927d9a..0e01927d9a 100644
--- a/cpukit/score/include/rtems/score/sysstate.h
+++ b/cpukit/include/rtems/score/sysstate.h
diff --git a/cpukit/score/include/rtems/score/thread.h b/cpukit/include/rtems/score/thread.h
index 7e0e2722dd..7e0e2722dd 100644
--- a/cpukit/score/include/rtems/score/thread.h
+++ b/cpukit/include/rtems/score/thread.h
diff --git a/cpukit/score/include/rtems/score/threaddispatch.h b/cpukit/include/rtems/score/threaddispatch.h
index 63eb4c6fb4..63eb4c6fb4 100644
--- a/cpukit/score/include/rtems/score/threaddispatch.h
+++ b/cpukit/include/rtems/score/threaddispatch.h
diff --git a/cpukit/score/include/rtems/score/threadimpl.h b/cpukit/include/rtems/score/threadimpl.h
index b6722fae19..b6722fae19 100644
--- a/cpukit/score/include/rtems/score/threadimpl.h
+++ b/cpukit/include/rtems/score/threadimpl.h
diff --git a/cpukit/score/include/rtems/score/threadmp.h b/cpukit/include/rtems/score/threadmp.h
index 9cde35b649..9cde35b649 100644
--- a/cpukit/score/include/rtems/score/threadmp.h
+++ b/cpukit/include/rtems/score/threadmp.h
diff --git a/cpukit/score/include/rtems/score/threadq.h b/cpukit/include/rtems/score/threadq.h
index 3e618bf5af..3e618bf5af 100644
--- a/cpukit/score/include/rtems/score/threadq.h
+++ b/cpukit/include/rtems/score/threadq.h
diff --git a/cpukit/score/include/rtems/score/threadqimpl.h b/cpukit/include/rtems/score/threadqimpl.h
index ecbd8fd42f..ecbd8fd42f 100644
--- a/cpukit/score/include/rtems/score/threadqimpl.h
+++ b/cpukit/include/rtems/score/threadqimpl.h
diff --git a/cpukit/score/include/rtems/score/timecounter.h b/cpukit/include/rtems/score/timecounter.h
index 79444de482..79444de482 100644
--- a/cpukit/score/include/rtems/score/timecounter.h
+++ b/cpukit/include/rtems/score/timecounter.h
diff --git a/cpukit/score/include/rtems/score/timecounterimpl.h b/cpukit/include/rtems/score/timecounterimpl.h
index a48ac70683..a48ac70683 100644
--- a/cpukit/score/include/rtems/score/timecounterimpl.h
+++ b/cpukit/include/rtems/score/timecounterimpl.h
diff --git a/cpukit/score/include/rtems/score/timespec.h b/cpukit/include/rtems/score/timespec.h
index 72a000177f..72a000177f 100644
--- a/cpukit/score/include/rtems/score/timespec.h
+++ b/cpukit/include/rtems/score/timespec.h
diff --git a/cpukit/score/include/rtems/score/timestamp.h b/cpukit/include/rtems/score/timestamp.h
index 6fc17ced9c..6fc17ced9c 100644
--- a/cpukit/score/include/rtems/score/timestamp.h
+++ b/cpukit/include/rtems/score/timestamp.h
diff --git a/cpukit/score/include/rtems/score/tls.h b/cpukit/include/rtems/score/tls.h
index 644e54e6f7..644e54e6f7 100644
--- a/cpukit/score/include/rtems/score/tls.h
+++ b/cpukit/include/rtems/score/tls.h
diff --git a/cpukit/score/include/rtems/score/tod.h b/cpukit/include/rtems/score/tod.h
index c0ab5e795d..c0ab5e795d 100644
--- a/cpukit/score/include/rtems/score/tod.h
+++ b/cpukit/include/rtems/score/tod.h
diff --git a/cpukit/score/include/rtems/score/todimpl.h b/cpukit/include/rtems/score/todimpl.h
index b00ab6cca2..b00ab6cca2 100644
--- a/cpukit/score/include/rtems/score/todimpl.h
+++ b/cpukit/include/rtems/score/todimpl.h
diff --git a/cpukit/score/include/rtems/score/userext.h b/cpukit/include/rtems/score/userext.h
index 5af5824808..5af5824808 100644
--- a/cpukit/score/include/rtems/score/userext.h
+++ b/cpukit/include/rtems/score/userext.h
diff --git a/cpukit/score/include/rtems/score/userextimpl.h b/cpukit/include/rtems/score/userextimpl.h
index 5ad2c63765..5ad2c63765 100644
--- a/cpukit/score/include/rtems/score/userextimpl.h
+++ b/cpukit/include/rtems/score/userextimpl.h
diff --git a/cpukit/score/include/rtems/score/watchdog.h b/cpukit/include/rtems/score/watchdog.h
index dbb092bbef..dbb092bbef 100644
--- a/cpukit/score/include/rtems/score/watchdog.h
+++ b/cpukit/include/rtems/score/watchdog.h
diff --git a/cpukit/score/include/rtems/score/watchdogimpl.h b/cpukit/include/rtems/score/watchdogimpl.h
index f219a70768..f219a70768 100644
--- a/cpukit/score/include/rtems/score/watchdogimpl.h
+++ b/cpukit/include/rtems/score/watchdogimpl.h
diff --git a/cpukit/score/include/rtems/score/wkspace.h b/cpukit/include/rtems/score/wkspace.h
index 3676ff28c4..3676ff28c4 100644
--- a/cpukit/score/include/rtems/score/wkspace.h
+++ b/cpukit/include/rtems/score/wkspace.h