diff options
author | Michael I. Bushnell <mib@gnu.org> | 1995-08-16 16:16:35 +0000 |
---|---|---|
committer | Michael I. Bushnell <mib@gnu.org> | 1995-08-16 16:16:35 +0000 |
commit | f5f9a824c69103b0d5099a25377eb3ffa52214e0 (patch) | |
tree | 47c985e8efd84ac5e4e5074efee10906f9529c39 /pfinet/linux | |
parent | 0511b51680d4f827cc485140249862356d232469 (diff) |
Formerly interrupt.h.~3~
Diffstat (limited to 'pfinet/linux')
-rw-r--r-- | pfinet/linux/interrupt.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/pfinet/linux/interrupt.h b/pfinet/linux/interrupt.h index 49432b6e..738c84ad 100644 --- a/pfinet/linux/interrupt.h +++ b/pfinet/linux/interrupt.h @@ -2,6 +2,14 @@ #define _HACK_INTERRUPT_H_ #define NET_BH 1 -void mark_bh (int); + +extern inline void +mark_bottom_half (int foo) +{ + assert (foo == NET_BH); + + incoming_net_packet (); +} + #endif |