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

#define NET_BH 1

extern inline void 
mark_bottom_half (int foo)
{
  assert (foo == NET_BH);
  
  incoming_net_packet ();
}


#endif