The monitoring thread should be called "picasso" (lower case) as in BeOS R5.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@12005 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz
2005-03-25 20:39:43 +00:00
parent b8dcc94ceb
commit c98108eee3
2 changed files with 3 additions and 2 deletions
+2 -1
View File
@@ -149,7 +149,7 @@ AppServer::AppServer(void)
fDecoratorLock= create_sem(1,"app_server_decor_sem"); fDecoratorLock= create_sem(1,"app_server_decor_sem");
// Spawn our thread-monitoring thread // Spawn our thread-monitoring thread
fPicassoThreadID= spawn_thread(PicassoThread,"Picasso", B_NORMAL_PRIORITY, this); fPicassoThreadID= spawn_thread(PicassoThread,"picasso", B_NORMAL_PRIORITY, this);
if (fPicassoThreadID >= 0) if (fPicassoThreadID >= 0)
resume_thread(fPicassoThreadID); resume_thread(fPicassoThreadID);
@@ -229,6 +229,7 @@ int32 AppServer::PicassoThread(void *data)
thread_id AppServer::Run(void) thread_id AppServer::Run(void)
{ {
MainLoop(); MainLoop();
kill_thread(fPicassoThreadID);
return 0; return 0;
} }
+1 -1
View File
@@ -26,7 +26,7 @@ class BitmapManager;
application start and quit messages. It also starts the housekeeping threads application start and quit messages. It also starts the housekeeping threads
and initializes most of the server's globals. and initializes most of the server's globals.
*/ */
#if DISPLAYDRIVER == HWDRIVER #ifndef TEST_MODE
class AppServer class AppServer
#else #else
class AppServer : public BApplication class AppServer : public BApplication