Coverage Report

Created: 2017-10-25 09:10

/root/src/xen/xen/arch/x86/cpu/mcheck/util.c
Line
Count
Source (jump to first uncovered line)
1
2
#include <asm/system.h>
3
#include "util.h"
4
#include "mce.h"
5
6
void mce_panic_check(void)
7
0
{
8
0
    if ( is_mc_panic )
9
0
    {
10
0
        local_irq_enable();
11
0
        for ( ; ; )
12
0
            halt();
13
0
    }
14
0
}