2 * \brief Client handling 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 PENDING_CLIENTS_H
13 #define PENDING_CLIENTS_H
15 #include <barrelfish/barrelfish.h>
16 #include <if/proc_mgmt_defs.h>
18 #define HASH_INDEX_BUCKETS 6151
22 ClientType_SpawnWithCaps,
27 // TODO(razvan): Others?
30 struct pending_client {
31 struct proc_mgmt_binding *b;
36 errval_t pending_clients_add(struct capref domain_cap,
37 struct proc_mgmt_binding *b, enum ClientType type,
39 errval_t pending_clients_release(struct capref domain_cap,
40 struct pending_client **ret_cl);
42 #endif // PENDING_CLIENTS_H