diff options
author | Thomas Bushnell <thomas@gnu.org> | 1999-09-09 05:05:04 +0000 |
---|---|---|
committer | Thomas Bushnell <thomas@gnu.org> | 1999-09-09 05:05:04 +0000 |
commit | a954869b1da55349ce3de83df3f8a8ec0334b767 (patch) | |
tree | 1d2fe2f1d4dc617e0833a6180b127e4eeb8892bc /pfinet/pfinet.h | |
parent | 45a569132f7b3d9c5ae0080908491baf525fa511 (diff) |
1999-09-09 Thomas Bushnell, BSG <tb@mit.edu>
* ethernet.c (ethernet_open): Don't start the input work thread
here.
(more_packets, mark_bh, input_work_thread): Move
these to ...
* devices.c: ... here.
Also include "pfinet.h" instead of list of <> includes.
* main.c (main): Launch input work thread here.
* pfinet.h (input_work_thread): Declare function.
* devices.c (add_device): Remove unused function.
* pfinet.h (incoming_net_packet): Remove unused declaration.
Diffstat (limited to 'pfinet/pfinet.h')
-rw-r--r-- | pfinet/pfinet.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/pfinet/pfinet.h b/pfinet/pfinet.h index 368c6b54..36756615 100644 --- a/pfinet/pfinet.h +++ b/pfinet/pfinet.h @@ -29,8 +29,6 @@ extern device_t master_device; -void incoming_net_packet (void); - extern struct proto_ops *proto_ops; struct mutex global_lock; @@ -71,6 +69,7 @@ struct sock_user *make_sock_user (struct socket *, int, int); error_t make_sockaddr_port (struct socket *, int, mach_port_t *, mach_msg_type_name_t *); void init_devices (void); +any_t input_work_thread (any_t); void init_time (void); void inet_proto_init (struct net_proto *); void ip_rt_add (short, u_long, u_long, u_long, struct device *, |