From 8e94a44e0eacbec394bc93d87db275295e7a670d Mon Sep 17 00:00:00 2001 Message-Id: <8e94a44e0eacbec394bc93d87db275295e7a670d.1715440565.git.mdw@distorted.org.uk> From: Mark Wooding Date: Sat, 19 Jun 1999 20:35:45 +0000 Subject: [PATCH] Whoops. I'd left the type of the jump buffer as `sigjmp_buf'. Organization: Straylight/Edgeware From: mdw --- lock.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lock.c b/lock.c index ad223ee..335c3ac 100644 --- a/lock.c +++ b/lock.c @@ -1,6 +1,6 @@ /* -*-c-*- * - * $Id: lock.c,v 1.4 1999/06/19 20:33:16 mdw Exp $ + * $Id: lock.c,v 1.5 1999/06/19 20:35:45 mdw Exp $ * * Simplified POSIX locking interface * @@ -30,6 +30,9 @@ /*----- Revision history --------------------------------------------------* * * $Log: lock.c,v $ + * Revision 1.5 1999/06/19 20:35:45 mdw + * Whoops. I'd left the type of the jump buffer as `sigjmp_buf'. + * * Revision 1.4 1999/06/19 20:33:16 mdw * More sophisticated and excessive signal and alarm handling. * @@ -66,7 +69,7 @@ /*----- Static variables --------------------------------------------------*/ -static sigjmp_buf jmp; /* Jump here to interrup @fcntl@ */ +static jmp_buf jmp; /* Jump here to interrup @fcntl@ */ /*----- Main code ---------------------------------------------------------*/ -- [mdw]