core: SCHED_PRIO_LEVELS==16 for every board

Closes #1399.

> Using a different value for SCHED_PRIO_LEVELS for 16 and 32 bit
platforms hurts portability, one thing that we heavily advertise about
RIOT. if you want to write a portable application, then you have to
assume the lower value.

This PR defaults `SCHED_PRIO_LEVELS` to 16 for every board.
This commit is contained in:
René Kijewski 2014-08-18 10:42:12 +02:00
parent 6999e6fb21
commit b4f105f178

View File

@ -91,9 +91,7 @@
* @def SCHED_PRIO_LEVELS * @def SCHED_PRIO_LEVELS
* @brief The number of thread priority levels * @brief The number of thread priority levels
*/ */
#if ARCH_32_BIT #ifndef SCHED_PRIO_LEVELS
#define SCHED_PRIO_LEVELS 32
#else
#define SCHED_PRIO_LEVELS 16 #define SCHED_PRIO_LEVELS 16
#endif #endif