* Increased the maximal number of (pseudo) semaphores.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26816 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold
2008-08-05 16:52:11 +00:00
parent c569fd76b4
commit 5737b4aed8
+1 -1
View File
@@ -16,7 +16,7 @@ struct semaphore {
bool inUse; bool inUse;
}; };
static const int kSemaphoreCount = 10240; static const int kSemaphoreCount = 40960;
static semaphore sSemaphores[kSemaphoreCount]; static semaphore sSemaphores[kSemaphoreCount];