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

Function thread_callback

lib_acl_cpp/samples/aio/aio_ipc/main.cpp:72–92  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

70}
71
72static void* thread_callback(void *ctx)
73{
74 const char* addr = (const char*) ctx;
75 acl::aio_handle handle;
76
77 if (!client_main(&handle, addr)) {
78 handle.check();
79 return NULL;
80 }
81
82 // ��Ϣѭ��
83 while (true) {
84 if (!handle.check()) {
85 break;
86 }
87 }
88
89 handle.check();
90
91 return NULL;
92}
93
94class test_client2 : public acl::ipc_client
95{

Callers

nothing calls this directly

Calls 2

client_mainFunction · 0.85
checkMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…