Increased the maximal port message size to 256 KB. The profiling

messages easily hit the previous limit. Maybe another solution should be
sought.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@27591 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2008-09-17 00:23:25 +00:00
parent bacba30b6f
commit 5f87692c66

View File

@ -61,7 +61,7 @@ struct port_entry {
#define MAX_QUEUE_LENGTH 4096
#define PORT_MAX_MESSAGE_SIZE 65536
#define PORT_MAX_MESSAGE_SIZE (256 * 1024)
// sMaxPorts must be power of 2
static int32 sMaxPorts = 4096;