aos/include/barrelfish_kpi/domain_params.h
2022-03-30 20:12:19 +02:00

38 lines
1.2 KiB
C

/**
* \file
* \brief Initial parameters passed to a domain.
*/
/*
* Copyright (c) 2011, ETH Zurich.
* All rights reserved.
*
* This file is distributed under the terms in the attached LICENSE file.
* If you do not find this file, copies can be found by writing to:
* ETH Zurich D-INFK, Universitaetstrasse 6, CH-8092 Zurich. Attn: Systems Group.
*/
#ifndef SPAWN_DOMAIN_PARAMS_H
#define SPAWN_DOMAIN_PARAMS_H
#include <sys/cdefs.h>
__BEGIN_DECLS
struct spawn_domain_params {
int argc; ///< Number of arguments
const char *argv[MAX_CMDLINE_ARGS + 1]; ///< Command-line arguments; +1 for NULL terminator
char *envp[MAX_ENVIRON_VARS + 1]; ///< Environment strings; +1 for NULL terminator
void *vspace_buf; ///< Serialised vspace data
size_t vspace_buf_len; ///< Length of serialised vspace data
void *rpc_shared_memory;
void *tls_init_base; ///< Address of initialised TLS data block
size_t tls_init_len; ///< Length of initialised TLS data block
size_t tls_total_len; ///< Total (initialised + BSS) TLS data length
size_t pagesize; ///< the page size to be used (domain spanning)
};
__END_DECLS
#endif // SPAWN_DOMAIN_PARAMS_H