├── LICENSE ├── README.md ├── ebin └── .gitignore ├── guiexample.png ├── include ├── vprof.hrl └── wx_compat.hrl └── src ├── vprof.app.src ├── vprof.erl ├── vprof_data.erl ├── vprof_function.erl ├── vprof_functions.erl ├── vprof_grid.erl ├── vprof_gui.erl ├── vprof_process.erl ├── vprof_processes.erl ├── vprof_profile.erl ├── vprof_q.erl └── vprof_wx_utils.erl /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artplant/vprof/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artplant/vprof/HEAD/README.md -------------------------------------------------------------------------------- /ebin/.gitignore: -------------------------------------------------------------------------------- 1 | *.app 2 | *.beam -------------------------------------------------------------------------------- /guiexample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artplant/vprof/HEAD/guiexample.png -------------------------------------------------------------------------------- /include/vprof.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artplant/vprof/HEAD/include/vprof.hrl -------------------------------------------------------------------------------- /include/wx_compat.hrl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artplant/vprof/HEAD/include/wx_compat.hrl -------------------------------------------------------------------------------- /src/vprof.app.src: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artplant/vprof/HEAD/src/vprof.app.src -------------------------------------------------------------------------------- /src/vprof.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artplant/vprof/HEAD/src/vprof.erl -------------------------------------------------------------------------------- /src/vprof_data.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artplant/vprof/HEAD/src/vprof_data.erl -------------------------------------------------------------------------------- /src/vprof_function.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artplant/vprof/HEAD/src/vprof_function.erl -------------------------------------------------------------------------------- /src/vprof_functions.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artplant/vprof/HEAD/src/vprof_functions.erl -------------------------------------------------------------------------------- /src/vprof_grid.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artplant/vprof/HEAD/src/vprof_grid.erl -------------------------------------------------------------------------------- /src/vprof_gui.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artplant/vprof/HEAD/src/vprof_gui.erl -------------------------------------------------------------------------------- /src/vprof_process.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artplant/vprof/HEAD/src/vprof_process.erl -------------------------------------------------------------------------------- /src/vprof_processes.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artplant/vprof/HEAD/src/vprof_processes.erl -------------------------------------------------------------------------------- /src/vprof_profile.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artplant/vprof/HEAD/src/vprof_profile.erl -------------------------------------------------------------------------------- /src/vprof_q.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artplant/vprof/HEAD/src/vprof_q.erl -------------------------------------------------------------------------------- /src/vprof_wx_utils.erl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/artplant/vprof/HEAD/src/vprof_wx_utils.erl --------------------------------------------------------------------------------