From 9543470f44aed938c1b27bd7964d31bb19d425c1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20A=C3=9Fmus?= Date: Mon, 28 Mar 2005 11:13:19 +0000 Subject: [PATCH] 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 --- src/servers/app/RootLayer.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/servers/app/RootLayer.cpp b/src/servers/app/RootLayer.cpp index 79d351ef91..c20f3a4b45 100644 --- a/src/servers/app/RootLayer.cpp +++ b/src/servers/app/RootLayer.cpp @@ -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()