xref: /kvm-unit-tests/lib/s390x/asm/interrupt.h (revision 10594e42ecdda42e5eff703439b7079a0c93e8e5)
1 /*
2  * Copyright (c) 2017 Red Hat Inc
3  *
4  * Authors:
5  *  David Hildenbrand <david@redhat.com>
6  *
7  * This code is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU Library General Public License version 2.
9  */
10 #ifndef _ASMS390X_IRQ_H_
11 #define _ASMS390X_IRQ_H_
12 #include <asm/arch_def.h>
13 
14 void handle_pgm_int(void);
15 void expect_pgm_int(void);
16 void check_pgm_int_code(uint16_t code);
17 
18 #endif
19