From 457c142fdf9a200cf37cb06acf9437ca1a890357 Mon Sep 17 00:00:00 2001 From: DarkWyrm Date: Sun, 8 Dec 2002 12:13:22 +0000 Subject: [PATCH] increased port capacity. Should make deadlocks with the ViewDriver not so much a problem. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@2179 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/servers/app/proto7/AppServer.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/servers/app/proto7/AppServer.cpp b/src/servers/app/proto7/AppServer.cpp index 5615d1977a..78460b293f 100644 --- a/src/servers/app/proto7/AppServer.cpp +++ b/src/servers/app/proto7/AppServer.cpp @@ -41,8 +41,8 @@ AppServer::AppServer(void) : BApplication("application/x-vnd.obe-OBAppServer") printf("AppServer()\n"); #endif - mouseport=create_port(30,SERVER_INPUT_PORT); - messageport=create_port(20,SERVER_PORT_NAME); + mouseport=create_port(100,SERVER_INPUT_PORT); + messageport=create_port(100,SERVER_PORT_NAME); #ifdef DEBUG_APPSERVER_THREAD printf("Server message port: %ld\n",messageport); printf("Server input port: %ld\n",mouseport);