124651682edaf71e8a826f23a7ea09bc97c8072c4Mathias Agopian/*
224651682edaf71e8a826f23a7ea09bc97c8072c4Mathias Agopian * Copyright (C) 2010 The Android Open Source Project
324651682edaf71e8a826f23a7ea09bc97c8072c4Mathias Agopian *
424651682edaf71e8a826f23a7ea09bc97c8072c4Mathias Agopian * Licensed under the Apache License, Version 2.0 (the "License");
524651682edaf71e8a826f23a7ea09bc97c8072c4Mathias Agopian * you may not use this file except in compliance with the License.
624651682edaf71e8a826f23a7ea09bc97c8072c4Mathias Agopian * You may obtain a copy of the License at
724651682edaf71e8a826f23a7ea09bc97c8072c4Mathias Agopian *
824651682edaf71e8a826f23a7ea09bc97c8072c4Mathias Agopian *      http://www.apache.org/licenses/LICENSE-2.0
924651682edaf71e8a826f23a7ea09bc97c8072c4Mathias Agopian *
1024651682edaf71e8a826f23a7ea09bc97c8072c4Mathias Agopian * Unless required by applicable law or agreed to in writing, software
1124651682edaf71e8a826f23a7ea09bc97c8072c4Mathias Agopian * distributed under the License is distributed on an "AS IS" BASIS,
1224651682edaf71e8a826f23a7ea09bc97c8072c4Mathias Agopian * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1324651682edaf71e8a826f23a7ea09bc97c8072c4Mathias Agopian * See the License for the specific language governing permissions and
1424651682edaf71e8a826f23a7ea09bc97c8072c4Mathias Agopian * limitations under the License.
1524651682edaf71e8a826f23a7ea09bc97c8072c4Mathias Agopian */
169066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
1724651682edaf71e8a826f23a7ea09bc97c8072c4Mathias Agopian#include <binder/BinderService.h>
189066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project#include <SurfaceFlinger.h>
199066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
209066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Projectusing namespace android;
219066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project
2224651682edaf71e8a826f23a7ea09bc97c8072c4Mathias Agopianint main(int argc, char** argv) {
2324651682edaf71e8a826f23a7ea09bc97c8072c4Mathias Agopian    SurfaceFlinger::publishAndJoinThreadPool();
2424651682edaf71e8a826f23a7ea09bc97c8072c4Mathias Agopian    return 0;
259066cfe9886ac131c34d59ed0e2d287b0e3c0087The Android Open Source Project}
26