Searched defs:personality (Results 1 - 5 of 5) sorted by relevance

/lxc/src/lxc/
H A Dattach.h35 signed long personality; member in struct:lxc_proc_context_info
H A Dattach_options.h46 LXC_ATTACH_SET_PERSONALITY = 0x00000004, //!< Set personality
84 /*! Initial personality (\c -1 to autodetect).
85 * \warning This may be ignored if lxc is compiled without personality support)
87 long personality; member in struct:lxc_attach_options_t
139 /* .personality = */ -1, \
H A Dattach.c64 #include <sys/personality.h>
735 signed long personality; local
753 personality = get_personality(name, lxcpath);
754 if (init_ctx->personality < 0) {
755 ERROR("Failed to get personality of the container.");
759 init_ctx->personality = personality;
1107 if (options->personality < 0)
1108 new_personality = init_ctx->personality;
1110 new_personality = options->personality;
[all...]
H A Dconf.h300 signed long personality; member in struct:lxc_conf
H A Dconfile.c53 #include <sys/personality.h>
1133 signed long personality = lxc_config_parse_arch(value); local
1135 if (personality >= 0)
1136 lxc_conf->personality = personality;
1138 WARN("unsupported personality '%s'", value);
2191 switch(c->personality) {

Completed in 220 milliseconds