hw: change round-robin scheduling slice to 10 ms

Previously, it was set to 100 ms which caused a remarkable disadvantage
in reactivity.

Ref #1464
This commit is contained in:
Martin Stein 2015-04-09 21:26:36 +02:00 committed by Christian Helmuth
parent de9d69a6d7
commit e4f560f39b
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ namespace Kernel
constexpr unsigned cpu_quota_ms = 1000;
/* time slice for the round-robin mode and the idle in CPU scheduling */
constexpr unsigned cpu_fill_ms = 100;
constexpr unsigned cpu_fill_ms = 10;
}
#endif /* _KERNEL__CONFIGURATION_H_ */