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

Function test

lib_acl_cpp/samples/atomic/main.cpp:70–77  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

68};
69
70static void test(void)
71{
72 acl::atomic_long n1(10), n2;
73
74 printf("n1=%lld, n2=%lld\r\n", n1.value(), n2.value());
75 n2 = n1;
76 printf("n1=%lld, n2=%lld\r\n", n1.value(), n2.value());
77}
78
79int main(void)
80{

Callers 1

mainFunction · 0.70

Calls 1

valueMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…