diff options
author | Miles Bader <miles@gnu.org> | 1995-07-22 00:07:43 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-07-22 00:07:43 +0000 |
commit | 091a9dd71ff33796fa72a1b139e5ec637045b32d (patch) | |
tree | 69d873edd8db7107f7188a9063b7f412dcedb76d /pflocal/socket.c | |
parent | af10bf5e427df592f54362ca1047c5d1ca3e200d (diff) |
Formerly socket.c.~13~
Diffstat (limited to 'pflocal/socket.c')
-rw-r--r-- | pflocal/socket.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pflocal/socket.c b/pflocal/socket.c index 82ef26b6..a45bb475 100644 --- a/pflocal/socket.c +++ b/pflocal/socket.c @@ -40,9 +40,11 @@ static error_t ensure_connq (struct sock *sock) { error_t err = 0; +debug (sock, "lock"); mutex_lock (&sock->lock); if (!sock->connq) err = connq_create (&sock->connq); +debug (sock, "unlock"); mutex_unlock (&sock->lock); return err; } |