File: interrupt.h

package info (click to toggle)
memtest86%2B 8.00-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,768 kB
  • sloc: ansic: 23,121; asm: 2,488; makefile: 625; sh: 408
file content (20 lines) | stat: -rw-r--r-- 305 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// SPDX-License-Identifier: GPL-2.0
#ifndef INTERRUPT_H
#define INTERRUPT_H
/**
 * \file
 *
 * Provides the interrupt handler.
 *
 *//*
 * Copyright (C) 2020-2022 Martin Whitaker.
 */

struct trap_regs;

/**
 * Handles an interrupt.
 */
void interrupt(struct trap_regs *trap_regs);

#endif // INTERRUPT_H