summaryrefslogtreecommitdiffstats
path: root/src/doppelganger/main.cpp
blob: 925557600e7f14da5e68bb11a0526cb1c9257350 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <binder/IPCThreadState.h>

#include "permissioncontroller.h"
#include "schedulingpolicyservice.h"

using namespace android;

int main(int, char *[])
{
    sp<ProcessState> proc(ProcessState::self());
    SchedulingPolicyService::instantiate();
    PermissionController::instantiate();
    IPCThreadState::self()->joinThreadPool();
}