2010-07-15 01:41:18 +00:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 The Android Open Source Project
|
|
|
|
*
|
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
*
|
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
*
|
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
2009-03-04 03:31:44 +00:00
|
|
|
|
2013-08-23 22:56:38 +00:00
|
|
|
#include <sys/resource.h>
|
|
|
|
|
|
|
|
#include <cutils/sched_policy.h>
|
2013-08-20 00:26:18 +00:00
|
|
|
#include <binder/IServiceManager.h>
|
|
|
|
#include <binder/IPCThreadState.h>
|
|
|
|
#include <binder/ProcessState.h>
|
|
|
|
#include <binder/IServiceManager.h>
|
2013-07-22 19:20:28 +00:00
|
|
|
#include "SurfaceFlinger.h"
|
2015-06-23 19:55:15 +00:00
|
|
|
#include "DisplayUtils.h"
|
2009-03-04 03:31:44 +00:00
|
|
|
|
|
|
|
using namespace android;
|
|
|
|
|
2014-05-08 21:53:26 +00:00
|
|
|
int main(int, char**) {
|
2012-04-20 00:31:53 +00:00
|
|
|
// When SF is launched in its own process, limit the number of
|
|
|
|
// binder threads to 4.
|
|
|
|
ProcessState::self()->setThreadPoolMaxThreadCount(4);
|
2013-08-20 00:26:18 +00:00
|
|
|
|
2013-08-23 22:56:38 +00:00
|
|
|
// start the thread pool
|
|
|
|
sp<ProcessState> ps(ProcessState::self());
|
|
|
|
ps->startThreadPool();
|
|
|
|
|
2013-08-20 00:26:18 +00:00
|
|
|
// instantiate surfaceflinger
|
2015-06-23 19:55:15 +00:00
|
|
|
sp<SurfaceFlinger> flinger = DisplayUtils::getInstance()->getSFInstance();
|
2013-08-20 00:26:18 +00:00
|
|
|
|
2013-08-23 22:56:38 +00:00
|
|
|
setpriority(PRIO_PROCESS, 0, PRIORITY_URGENT_DISPLAY);
|
2015-01-27 03:45:47 +00:00
|
|
|
|
2013-08-23 22:56:38 +00:00
|
|
|
set_sched_policy(0, SP_FOREGROUND);
|
|
|
|
|
2013-08-20 00:26:18 +00:00
|
|
|
// initialize before clients can connect
|
|
|
|
flinger->init();
|
|
|
|
|
|
|
|
// publish surface flinger
|
|
|
|
sp<IServiceManager> sm(defaultServiceManager());
|
|
|
|
sm->addService(String16(SurfaceFlinger::getServiceName()), flinger, false);
|
|
|
|
|
|
|
|
// run in this thread
|
|
|
|
flinger->run();
|
|
|
|
|
2010-07-15 01:41:18 +00:00
|
|
|
return 0;
|
2009-03-04 03:31:44 +00:00
|
|
|
}
|