callgrind

Crates.iocallgrind
lib.rscallgrind
version1.1.0
sourcesrc
created_at2018-09-25 08:52:43.286665
updated_at2018-09-25 08:52:43.286665
descriptioncallgrind
homepagehttps://github.com/lemonrock/callgrind
repositoryhttps://github.com/lemonrock/callgrind.git
max_upload_size
id86442
size11,019
Raphael Cohn (raphaelcohn)

documentation

README

callgrind

callgrind is a Rust crate intended to complement the valgrind_request crate. It is intended to be used during testing to gather instrumentation and statistics to allow examination of performance bottlenecks.

To use it:-

extern crate callgrind;

use ::callgrind::CallgrindClientRequest;


#[test]
fn some_test()
{
	CallgrindClientRequest::start();
	
	// Execute some code to gather statistics on.
	...
	
	CallgrindClientRequest::stop(None);
}

Licensing

The license for this project is MIT.

Commit count: 1

cargo fmt