1/*
2 * Copyright (c) 2007-12 ETH Zurich.
3 * All rights reserved.
4 *
5 * This file is distributed under the terms in the attached LICENSE file.
6 * If you do not find this file, copies can be found by writing to:
7 * ETH Zurich D-INFK, Haldeneggsteig 4, CH-8092 Zurich. Attn: Systems Group.
8 */
9
10#include <barrelfish/barrelfish.h>
11
12
13#include "service.h"
14
15int main(int argc, char **argv)
16{
17    errval_t err;
18
19    debug_printf("Xeon Phi Manager started.\n");
20
21    err = service_start();
22    if (err_is_fail(err)) {
23        USER_PANIC_ERR(err, "could not start the service\n");
24    }
25}
26
27
28