Created
September 10, 2021 13:56
-
-
Save UplinkCoder/633684b6a78f0cc7b5d7d52c9780a675 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <valgrind/callgrind.h> | |
| extern "C" void callgrind_start(void) | |
| { | |
| CALLGRIND_START_INSTRUMENTATION; | |
| } | |
| extern "C" void callgrind_stop(void) | |
| { | |
| CALLGRIND_STOP_INSTRUMENTATION; | |
| } | |
| extern "C" void callgrind_dumpstats(void) | |
| { | |
| CALLGRIND_DUMP_STATS; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment