1/** \file
2 *  \brief service helper functions
3 */
4
5/*
6 * Copyright (c) 2011, ETH Zurich.
7 * All rights reserved.
8 *
9 * This file is distributed under the terms in the attached LICENSE file.
10 * If you do not find this file, copies can be found by writing to:
11 * ETH Zurich D-INFK, Haldeneggsteig 4, CH-8092 Zurich. Attn: Systems Group.
12 */
13
14#ifndef __SERVICE_H__
15#define __SERVICE_H__
16
17#include <barrelfish/barrelfish.h>
18
19errval_t register_service_local(coreid_t core, char *name, iref_t iref);
20errval_t lookup_service(coreid_t core, char *name, iref_t *iref);
21
22
23#endif
24