From: mdw Date: Sat, 19 Jun 1999 20:35:45 +0000 (+0000) Subject: Whoops. I'd left the type of the jump buffer as `sigjmp_buf'. X-Git-Tag: 2.0.4~281 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/commitdiff_plain/8e94a44e0eacbec394bc93d87db275295e7a670d Whoops. I'd left the type of the jump buffer as `sigjmp_buf'. --- 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 ---------------------------------------------------------*/