dkrikun / tinyprofiler

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

TinyProfiler for C / C++

License: Public Domain

Supported architectures: Linux (x64), Windows (x64, UWP)

Usage:

#define USE_TINYPROFILER
#include "tinyprofiler.h"

int main() {
  profAlloc(1000000);
  profB("main");
  ...
  profE("main");
  profPrintAndFree();
}

Redirect console output to a .json file and open it in about:tracing tab of your web browser.

About


Languages

Language:C 100.0%