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:
Joel Sherrill
2008-06-13 22:13:02 +00:00
parent e66dccf239
commit 1603ecd4b4
2 changed files with 14 additions and 5 deletions
+5
View File
@@ -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.
+9 -5
View File
@@ -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