summaryrefslogtreecommitdiffstats
path: root/cpukit/score/include/rtems/score/priority.h
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2017-09-27 12:07:14 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2017-09-27 12:09:37 +0200
commite460cd00fddc586908192fa8f46b7e5bfe6bd5ce (patch)
tree8342164e50e77e0c80146003d92d0c540269ac9e /cpukit/score/include/rtems/score/priority.h
parentbsp/imx: Add nocache section (diff)
downloadrtems-e460cd00fddc586908192fa8f46b7e5bfe6bd5ce.tar.bz2
score: Rename to _Scheduler_Control
Rename struct Scheduler_Control to _Scheduler_Control to allow its use in standard header files, e.g. <pthread.h>. Update #3112.
Diffstat (limited to '')
-rw-r--r--cpukit/score/include/rtems/score/priority.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/include/rtems/score/priority.h b/cpukit/score/include/rtems/score/priority.h
index 595aa3ebcf..9cc6338288 100644
--- a/cpukit/score/include/rtems/score/priority.h
+++ b/cpukit/score/include/rtems/score/priority.h
@@ -22,7 +22,7 @@
#include <rtems/score/cpu.h>
#include <rtems/score/rbtree.h>
-struct Scheduler_Control;
+struct _Scheduler_Control;
#ifdef __cplusplus
extern "C" {
@@ -140,7 +140,7 @@ struct Priority_Aggregation {
/**
* @brief The scheduler instance of this priority aggregation.
*/
- const struct Scheduler_Control *scheduler;
+ const struct _Scheduler_Control *scheduler;
#endif
/**