MCPcopy Create free account
hub / github.com/apache/brpc / bthread_list_join

Function bthread_list_join

src/bthread/bthread.cpp:634–640  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

632}
633
634int bthread_list_join(bthread_list_t* list) {
635 if (list->impl == NULL) {
636 return EINVAL;
637 }
638 static_cast<bthread::TidList*>(list->impl)->apply(bthread::TidJoiner());
639 return 0;
640}
641
642bthread_tag_t bthread_self_tag(void) {
643 return bthread::tls_task_group != nullptr ? bthread::tls_task_group->tag()

Callers 2

EchoMethod · 0.85
TESTFunction · 0.85

Calls 2

TidJoinerClass · 0.85
applyMethod · 0.80

Tested by 1

TESTFunction · 0.68