cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

irqhandler.h (300B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2#ifndef _LINUX_IRQHANDLER_H
      3#define _LINUX_IRQHANDLER_H
      4
      5/*
      6 * Interrupt flow handler typedefs are defined here to avoid circular
      7 * include dependencies.
      8 */
      9
     10struct irq_desc;
     11struct irq_data;
     12typedef	void (*irq_flow_handler_t)(struct irq_desc *desc);
     13
     14#endif