compiler-interrupts

crates.io docs.rs license

compiler-interrupts provides Rust API for the Compiler Interrupts library. Check out the Compiler Interrupts main repository for more info.

Requirements

Getting started

Add this to your Cargo.toml.

toml [dependencies] compiler-interrupts = "1.0"

Register the Compiler Interrupts handler in your program.

``` rust fn interrupt_handler(ic: i64) { println!("Compiler interrupt called with instruction count: {}", ic); }

fn main() { unsafe { compilerinterrupts::register(1000, 1000, interrupthandler); }

// your code
for _ in 0..100 {
    println!("hello world!");
}

} ```

If you have cargo-compiler-interrupts installed, you can now run cargo build-ci to start the compilation and integration processes. Check out the documentation for more info about the API.

Contribution

All issue reports, feature requests, pull requests and GitHub stars are welcomed and much appreciated.

Author

Quan Tran (@quanshousio)

Acknowledgements

License

cargo-compiler-interrupts is available under the MIT license. See the LICENSE file for more info.