MCPcopy Create free account
hub / github.com/acl-dev/acl / kill

Method kill

lib_fiber/cpp/src/fiber.cpp:272–285  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

270}
271
272bool fiber::kill(bool sync)
273{
274 if (f_ == NULL) {
275 return false;
276 } else if (acl_fiber_killed(f_)) {
277 return true;
278 }
279 if (sync) {
280 acl_fiber_kill_wait(f_);
281 } else {
282 acl_fiber_kill(f_);
283 }
284 return true;
285}
286
287bool fiber::killed() const
288{

Callers 8

stopMethod · 0.80
stopMethod · 0.80
user_loginMethod · 0.80
OnBnClickedStopListenMethod · 0.80
OnBnClickedListenMethod · 0.80
OnBnClickedListenMethod · 0.80
WndProcFunction · 0.80
stopMethod · 0.80

Calls 3

acl_fiber_kill_waitFunction · 0.85
acl_fiber_killedFunction · 0.50
acl_fiber_killFunction · 0.50

Tested by

no test coverage detected