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
This commit is contained in:
DarkWyrm 2002-12-08 12:13:22 +00:00
parent f618953010
commit 457c142fdf
1 changed files with 2 additions and 2 deletions

View File

@ -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);