kernel/thread: Remove outdated comment.

The thread limit enforcement was actually implemented back in hrev45811.
This commit is contained in:
Michael Lotz 2020-06-13 23:14:39 +02:00
parent 146630e096
commit 3cd10d35ab

View File

@ -78,7 +78,7 @@ static thread_id sNextThreadID = 2;
// ID 1 is allocated for the kernel by Team::Team() behind our back
// some arbitrarily chosen limits -- should probably depend on the available
// memory (the limit is not yet enforced)
// memory
static int32 sMaxThreads = 4096;
static int32 sUsedThreads = 0;