aboutsummaryrefslogtreecommitdiff
path: root/pfinet/devices.c
diff options
context:
space:
mode:
Diffstat (limited to 'pfinet/devices.c')
-rw-r--r--pfinet/devices.c60
1 files changed, 60 insertions, 0 deletions
diff --git a/pfinet/devices.c b/pfinet/devices.c
new file mode 100644
index 00000000..34d865a6
--- /dev/null
+++ b/pfinet/devices.c
@@ -0,0 +1,60 @@
+/*
+ Copyright (C) 1995, 1996, 1999 Free Software Foundation, Inc.
+ Written by Michael I. Bushnell, p/BSG.
+
+ This file is part of the GNU Hurd.
+
+ The GNU Hurd is free software; you can redistribute it and/or
+ modify it under the terms of the GNU General Public License as
+ published by the Free Software Foundation; either version 2, or (at
+ your option) any later version.
+
+ The GNU Hurd is distributed in the hope that it will be useful, but
+ WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+ General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
+
+#include "pfinet.h"
+
+struct device *dev_base;
+struct device loopback_dev;
+
+device_t master_device;
+
+static struct condition more_packets = CONDITION_INITIALIZER;
+
+void
+init_devices (void)
+{
+ error_t err;
+
+ err = get_privileged_ports (0, &master_device);
+ if (err)
+ {
+ perror ("Cannot fetch master device port");
+ exit (1);
+ }
+
+ dev_base = 0;
+}
+
+void
+mark_bh (int arg)
+{
+ condition_broadcast (&more_packets);
+}
+
+any_t
+input_work_thread (any_t arg)
+{
+ mutex_lock (&global_lock);
+ for (;;)
+ {
+ condition_wait (&more_packets, &global_lock);
+ net_bh (0);
+ }
+}