LCOV - differential code coverage report | |||||||||||||||||||||||||||||||
![]() | |||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||
![]() |
TLA Line data Source code 1 : /// Immediately terminate the calling process without calling 2 : /// atexit callbacks, C runtime destructors etc. We mainly use 3 : /// this to protect coverage data from concurrent writes. 4 UBC 0 : pub fn exit_now(code: u8) { 5 0 : unsafe { nix::libc::_exit(code as _) }; 6 0 : } |
![]() |
Generated by: LCOV version 2.1-beta |