Changeset 0d83bed2 in rtems for cpukit/rtems
- Timestamp:
- 12/02/21 13:00:53 (6 months ago)
- Branches:
- master
- Children:
- 9089bcc
- Parents:
- d7205f0
- git-author:
- Sebastian Huber <sebastian.huber@…> (12/02/21 13:00:53)
- git-committer:
- Sebastian Huber <sebastian.huber@…> (12/02/21 13:09:51)
- Location:
- cpukit/rtems/src
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/rtems/src/scheduleraddprocessor.c
rd7205f0 r0d83bed2 2 2 * @file 3 3 * 4 * @ingroup RTEMSImplClassic 4 * @ingroup RTEMSImplClassicScheduler 5 5 * 6 6 * @brief This source file contains the implementation of … … 26 26 #endif 27 27 28 #include <rtems/rtems/ tasks.h>28 #include <rtems/rtems/scheduler.h> 29 29 #include <rtems/score/assert.h> 30 30 #include <rtems/score/schedulerimpl.h> -
cpukit/rtems/src/schedulergetmaxprio.c
rd7205f0 r0d83bed2 4 4 * @file 5 5 * 6 * @ingroup RTEMSImplClassic 6 * @ingroup RTEMSImplClassicScheduler 7 7 * 8 8 * @brief This source file contains the implementation of … … 39 39 #endif 40 40 41 #include <rtems/rtems/ tasks.h>41 #include <rtems/rtems/scheduler.h> 42 42 #include <rtems/score/schedulerimpl.h> 43 43 -
cpukit/rtems/src/schedulergetprocessor.c
rd7205f0 r0d83bed2 4 4 * @file 5 5 * 6 * @ingroup RTEMSImplClassic 6 * @ingroup RTEMSImplClassicScheduler 7 7 * 8 8 * @brief This source file contains the implementation of … … 40 40 #endif 41 41 42 #include <rtems/rtems/ tasks.h>42 #include <rtems/rtems/scheduler.h> 43 43 44 44 static uint32_t _RTEMS_Scheduler_get_processor( void ) -
cpukit/rtems/src/schedulergetprocessormax.c
rd7205f0 r0d83bed2 4 4 * @file 5 5 * 6 * @ingroup RTEMSImplClassic 6 * @ingroup RTEMSImplClassicScheduler 7 7 * 8 8 * @brief This source file contains the implementation of … … 40 40 #endif 41 41 42 #include <rtems/rtems/ tasks.h>42 #include <rtems/rtems/scheduler.h> 43 43 44 44 static uint32_t _RTEMS_Scheduler_get_processor_maximum( void ) -
cpukit/rtems/src/schedulergetprocessorset.c
rd7205f0 r0d83bed2 2 2 * @file 3 3 * 4 * @ingroup RTEMSImplClassic 4 * @ingroup RTEMSImplClassicScheduler 5 5 * 6 6 * @brief This source file contains the implementation of … … 26 26 #endif 27 27 28 #include <rtems/rtems/ tasks.h>28 #include <rtems/rtems/scheduler.h> 29 29 #include <rtems/score/schedulerimpl.h> 30 30 -
cpukit/rtems/src/schedulerident.c
rd7205f0 r0d83bed2 2 2 * @file 3 3 * 4 * @ingroup RTEMSImplClassic 4 * @ingroup RTEMSImplClassicScheduler 5 5 * 6 6 * @brief This source file contains the implementation of … … 26 26 #endif 27 27 28 #include <rtems/rtems/ tasks.h>28 #include <rtems/rtems/scheduler.h> 29 29 #include <rtems/score/schedulerimpl.h> 30 30 -
cpukit/rtems/src/scheduleridentbyprocessor.c
rd7205f0 r0d83bed2 2 2 * @file 3 3 * 4 * @ingroup RTEMSImplClassic 4 * @ingroup RTEMSImplClassicScheduler 5 5 * 6 6 * @brief This source file contains the implementation of … … 26 26 #endif 27 27 28 #include <rtems/rtems/ tasks.h>28 #include <rtems/rtems/scheduler.h> 29 29 #include <rtems/score/assert.h> 30 30 #include <rtems/score/schedulerimpl.h> -
cpukit/rtems/src/scheduleridentbyprocessorset.c
rd7205f0 r0d83bed2 2 2 * @file 3 3 * 4 * @ingroup RTEMSImplClassic 4 * @ingroup RTEMSImplClassicScheduler 5 5 * 6 6 * @brief This source file contains the implementation of … … 26 26 #endif 27 27 28 #include <rtems/rtems/ tasks.h>28 #include <rtems/rtems/scheduler.h> 29 29 #include <rtems/score/assert.h> 30 30 #include <rtems/score/schedulerimpl.h> -
cpukit/rtems/src/schedulermapfromposix.c
rd7205f0 r0d83bed2 4 4 * @file 5 5 * 6 * @ingroup RTEMSImplClassic 6 * @ingroup RTEMSImplClassicScheduler 7 7 * 8 8 * @brief This source file contains the implementation of … … 39 39 #endif 40 40 41 #include <rtems/rtems/ tasks.h>41 #include <rtems/rtems/scheduler.h> 42 42 #include <rtems/score/schedulerimpl.h> 43 43 -
cpukit/rtems/src/schedulermaptoposix.c
rd7205f0 r0d83bed2 4 4 * @file 5 5 * 6 * @ingroup RTEMSImplClassic 6 * @ingroup RTEMSImplClassicScheduler 7 7 * 8 8 * @brief This source file contains the implementation of … … 39 39 #endif 40 40 41 #include <rtems/rtems/ tasks.h>41 #include <rtems/rtems/scheduler.h> 42 42 #include <rtems/score/schedulerimpl.h> 43 43 -
cpukit/rtems/src/schedulerremoveprocessor.c
rd7205f0 r0d83bed2 2 2 * @file 3 3 * 4 * @ingroup RTEMSImplClassic 4 * @ingroup RTEMSImplClassicScheduler 5 5 * 6 6 * @brief This source file contains the implementation of … … 26 26 #endif 27 27 28 #include <rtems/rtems/ tasks.h>28 #include <rtems/rtems/scheduler.h> 29 29 #include <rtems/score/schedulerimpl.h> 30 30 #include <rtems/config.h>
Note: See TracChangeset
for help on using the changeset viewer.