MCPcopy Create free account
hub / github.com/async-profiler/async-profiler / dev

Method dev

src/symbols_linux.cpp:139–144  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

137 unsigned long inode() { return strtoul(_inode, NULL, 10); }
138
139 unsigned long dev() {
140 char* colon;
141 unsigned long major = strtoul(_dev, &colon, 16);
142 unsigned long minor = strtoul(colon + 1, NULL, 16);
143 return major << 8 | minor;
144 }
145};
146
147struct SharedLibrary {

Callers 1

collectSharedLibrariesFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected