1/**
2 * \file
3 * \brief
4 */
5
6/*
7 * Copyright (c) 2007, 2008, 2009, ETH Zurich.
8 * Copyright (c) 2014, HP Labs.
9 * All rights reserved.
10 *
11 * This file is distributed under the terms in the attached LICENSE file.
12 * If you do not find this file, copies can be found by writing to:
13 * ETH Zurich D-INFK, Universitaetstr. 6, CH-8092 Zurich. Attn: Systems Group.
14 */
15
16#ifndef BARRELFISH_MORECORE_H
17#define BARRELFISH_MORECORE_H
18
19#include <sys/cdefs.h>
20
21__BEGIN_DECLS
22
23errval_t morecore_init(size_t alignment);
24void morecore_use_optimal(void);
25errval_t morecore_reinit(void);
26
27__END_DECLS
28
29#endif
30