summaryrefslogtreecommitdiff
path: root/pfinet/linux/interrupt.h
blob: ac722cf3c95be58a6419a5174597ba503df49f1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef _HACK_INTERRUPT_H_
#define _HACK_INTERRUPT_H_

#include <linux/netdevice.h>
#include "pfinet.h"

#define NET_BH 1

extern inline void 
mark_bh (int foo)
{
  assert (foo == NET_BH);
  
  net_bh (0);
}

#endif