ptcov 0.1.0-beta.1

Decoder to compute code coverage from IntelĀ® Processor Trace traces
Documentation
1
2
3
4
5
6
7
8
/// Overflow (OVF) packet, indicating a PT buffer overflow.
#[derive(Debug, PartialEq, Clone)]
pub struct Ovf {}

impl Ovf {
    pub(crate) const SIZE: usize = 2;
    pub(crate) const B1: u8 = 0xf3;
}