mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2026-09-21 06:24:07 +08:00
2008-06-13 Joel Sherrill <joel.sherrill@oarcorp.com>
* rtems/score/m68k.h: There is no point in defining the maximum priorities to 255. priority.h will default it to this.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2008-06-13 Joel Sherrill <joel.sherrill@oarcorp.com>
|
||||
|
||||
* rtems/score/m68k.h: There is no point in defining the maximum
|
||||
priorities to 255. priority.h will default it to this.
|
||||
|
||||
2008-06-10 Chris Johns <chrisj@rtems.org>
|
||||
|
||||
* cpu_asm.S: Add Coldfire FPU support.
|
||||
|
||||
@@ -138,6 +138,10 @@ extern "C" {
|
||||
|
||||
/*
|
||||
* Tiny RTEMS support. Small stack and limited priorities.
|
||||
*
|
||||
* These CPUs have very limited on-CPU memory which cannot
|
||||
* be expanded. We have to be gentle with them or nothing
|
||||
* will every run.
|
||||
*/
|
||||
# if (defined(__mcf_cpu_52221) || \
|
||||
defined(__mcf_cpu_52223) || \
|
||||
@@ -149,12 +153,12 @@ extern "C" {
|
||||
defined(__mcf_cpu_52235) || \
|
||||
defined(__mcf_cpu_52225) || \
|
||||
defined(__mcf_cpu_52235))
|
||||
# define M68K_CPU_STACK_MINIMUM_SIZE 2048
|
||||
/* Define the lowest priority. Based from 0 to this is 16 levels. */
|
||||
# define M68K_CPU_PRIORITY_MAXIMUM 15
|
||||
#define M68K_CPU_STACK_MINIMUM_SIZE 1024
|
||||
/* Define the lowest priority. Based from 0 to this is 16 levels. */
|
||||
#define M68K_CPU_PRIORITY_MAXIMUM 15
|
||||
# else
|
||||
# define M68K_CPU_STACK_MINIMUM_SIZE 4096
|
||||
# define M68K_CPU_PRIORITY_MAXIMUM 255
|
||||
#define M68K_CPU_STACK_MINIMUM_SIZE 4096
|
||||
/* Use the default number of priorities */
|
||||
# endif
|
||||
|
||||
#else
|
||||
|
||||
Reference in New Issue
Block a user