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:
@@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user