2 * \brief Spawnd state internals for the process manager.
4 * Copyright (c) 2017, ETH Zurich.
7 * This file is distributed under the terms in the attached LICENSE file.
8 * If you do not find this file, copies can be found by writing to:
9 * ETH Zurich D-INFK, Haldeneggsteig 4, CH-8092 Zurich. Attn: Systems Group.
12 #ifndef SPAWND_STATE_H
13 #define SPAWND_STATE_H
17 #include <if/spawn_defs.h>
18 #include <barrelfish/barrelfish.h>
22 struct spawn_binding *b;
24 // TODO(razvan): will need more state here.
27 errval_t spawnd_state_alloc(coreid_t core_id, struct spawn_binding *b);
28 void spawnd_state_free(coreid_t core_id);
29 bool spawnd_state_exists(coreid_t core_id);
30 struct spawnd_state *spawnd_state_get(coreid_t core_id);
32 #endif // SPAWND_STATE