From 9535e9ae6099f334632d38ded1d0aca3a303fa33 Mon Sep 17 00:00:00 2001 From: Miles Bader Date: Sun, 2 Jul 1995 00:12:31 +0000 Subject: Initial revision --- pflocal/connq.c | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 pflocal/connq.c (limited to 'pflocal') diff --git a/pflocal/connq.c b/pflocal/connq.c new file mode 100644 index 00000000..27df6d22 --- /dev/null +++ b/pflocal/connq.c @@ -0,0 +1,42 @@ +/* Listen queue functions + + Copyright (C) 1995 Free Software Foundation, Inc. + + Written by Miles Bader + + This program 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. + + This program 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., 675 Mass Ave, Cambridge, MA 02139, USA. */ + +#include + +#include "pflocal.h" + +error_t +listenq_create (struct listenq **lq) +{ + struct listenq *new = malloc (sizeof (struct listenq)); + + if (!new) + return ENOMEM; + + new->length = 0; + new->head = new->tail = 0; + new->queue = NULL; + + mutex_init (&new->lock); + condition_init (&new->listeners); + + *lq = new; + return 0; +} -- cgit v1.2.3