RootLayer thread can busy loop, and with this change, its easier to shoot app_server whereever it hurts most

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12089 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Stephan Aßmus 2005-03-28 11:13:19 +00:00
parent f6939eb1e1
commit 9543470f44

View File

@ -110,7 +110,8 @@ RootLayer::RootLayer(const char *name, int32 workspaceCount,
return;
// Spawn our working thread
fThreadID = spawn_thread(WorkingThread, name, B_REAL_TIME_DISPLAY_PRIORITY, this);
// fThreadID = spawn_thread(WorkingThread, name, B_REAL_TIME_DISPLAY_PRIORITY, this);
fThreadID = spawn_thread(WorkingThread, name, B_DISPLAY_PRIORITY, this);
}
RootLayer::~RootLayer()