MCPcopy Create free account
hub / github.com/COVESA/vsomeip / start

Method start

test/common/src/process.cpp:128–138  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

126}
127
128void process_group_t::start(const std::string& name) {
129 auto found = std::find_if(configs_.begin(), configs_.end(), [&](auto& config) -> bool { return config.name == name; });
130
131 if (found != configs_.end()) {
132 if (processes_.contains(found->name)) {
133 return;
134 }
135
136 processes_[found->name] = std::make_unique<process_manager_t>(found->executable, found->env_vars);
137 }
138}
139
140void process_group_t::start() {
141 for (auto& config : configs_) {

Callers 2

vsomeip_senderMethod · 0.45
runMethod · 0.45

Calls 3

beginMethod · 0.80
endMethod · 0.80
containsMethod · 0.45

Tested by

no test coverage detected