diff options
Diffstat (limited to 'pfinet')
-rw-r--r-- | pfinet/pfinet.h | 3 | ||||
-rw-r--r-- | pfinet/sched.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/pfinet/pfinet.h b/pfinet/pfinet.h index fbf772fe..f1bac08e 100644 --- a/pfinet/pfinet.h +++ b/pfinet/pfinet.h @@ -1,5 +1,5 @@ /* - Copyright (C) 1995 Free Software Foundation, Inc. + Copyright (C) 1995, 1996 Free Software Foundation, Inc. Written by Michael I. Bushnell, p/BSG. This file is part of the GNU Hurd. @@ -33,6 +33,7 @@ void incoming_net_packet (void); extern struct proto_ops *proto_ops; struct mutex global_lock; +struct mutex packet_queue_lock; struct port_bucket *pfinet_bucket; struct port_class *addrport_class; diff --git a/pfinet/sched.c b/pfinet/sched.c index 14646e54..41059b3f 100644 --- a/pfinet/sched.c +++ b/pfinet/sched.c @@ -1,5 +1,5 @@ /* - Copyright (C) 1995 Free Software Foundation, Inc. + Copyright (C) 1995, 1996 Free Software Foundation, Inc. Written by Michael I. Bushnell, p/BSG. This file is part of the GNU Hurd. @@ -23,6 +23,7 @@ #include "pfinet.h" struct mutex global_lock = MUTEX_INITIALIZER; +struct mutex packet_queue_lock = MUTEX_INITIALIZER; struct task_struct current_contents; struct task_struct *current = ¤t_contents; |