X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/blobdiff_plain/988b0fdbc6f7f0ba06673b500dbab365bdcc3c4c..4f6d400bf0d6324faa343ea121f465017032d72b:/lock.c 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 ---------------------------------------------------------*/