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

Function mbox_read

lib_acl_cpp/src/stdlib/mbox.cpp:25–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23}
24
25void* mbox_read(void* mbox, int timeout, bool* success)
26{
27 int ok;
28 void* o = (void*) acl_mbox_read((ACL_MBOX*) mbox, timeout, &ok);
29 if (success) {
30 *success = ok ? true : false;
31 }
32 return o;
33}
34
35size_t mbox_nsend(void* mbox)
36{

Callers 2

popMethod · 0.50
popMethod · 0.50

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…