Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
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
70
static 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
79
int main(void)
80
{
Callers
1
main
Function · 0.70
Calls
1
value
Method · 0.45
Tested by
no test coverage detected
Used in the wild
real call sites across dependent graphs
searching dependent graphs…