3 * $Id: exc.c,v 1.2 1999/05/05 18:50:31 mdw Exp $
5 * Structured exception handling in C
7 * (c) 1998 Straylight/Edgeware
10 /*----- Licensing notice --------------------------------------------------*
12 * This file is part of the mLib utilities library.
14 * mLib is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU Library General Public License as
16 * published by the Free Software Foundation; either version 2 of the
17 * License, or (at your option) any later version.
19 * mLib is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU Library General Public License for more details.
24 * You should have received a copy of the GNU Library General Public
25 * License along with mLib; if not, write to the Free Software
26 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
29 /*----- Revision history --------------------------------------------------*
32 * Revision 1.2 1999/05/05 18:50:31 mdw
33 * Change licensing conditions to LGPL.
35 * Revision 1.1.1.1 1998/06/17 23:44:42 mdw
36 * Initial version of mLib
46 /*----- Global variables --------------------------------------------------*/
48 __exc_hnd *__exc_list = 0;
50 /*----- Functions ---------------------------------------------------------*/
52 /* --- @exc__duff@ --- *
54 * Arguments: @exc_extype type@ = type of duff exception
55 * @exc_exval val@ = extra data supplied
59 * Use: Default handler when everything goes wrong.
62 static void exc__duff(exc_extype type, exc_exval val)
64 fprintf(stderr, "fatal error: uncaught exception (type = %lu)\n", type);
68 /* --- @exc__duffproc@ --- *
70 * Current handler when there are no more exceptions left.
73 static exc__uncaught exc__duffproc = exc__duff;
75 /* --- @exc_uncaught@ --- *
77 * Arguments: @void (*proc)(exc_extype type, exc_exval val) = new handler
79 * Returns: Pointer to the old handler value.
81 * Use: Sets the handler for uncaught exceptions.
84 exc__uncaught exc_uncaught(exc__uncaught proc)
86 exc__uncaught p = exc__duffproc;
92 /* --- @__exc_throw@ --- *
94 * Arguments: @exc_extype type@ = type of exception to throw
98 * Use: NOT FOR USER CONSUMPTION. Reads an appropriate exception
99 * value and throws an exception.
102 void __exc_throw(exc_extype type, ...)
108 switch (type & 0xC0) {
113 v.i = va_arg(ap, int);
116 v.p = va_arg(ap, void *);
119 v.s = va_arg(ap, char *);
123 __exc_rethrow(type, v);
126 /* --- @__exc_rethrow@ --- *
128 * Arguments: @exc_extype type@ = type of exception to throw
129 * @exc_exval val@ = value of exception to throw
133 * Use: NOT FOR USER CONSUMPTION. Does the donkey-work of raising
137 void __exc_rethrow(exc_extype type, exc_exval val)
139 __exc_hnd *p = __exc_list;
141 exc__duffproc(type, val);
144 __exc_list = p->next;
145 longjmp(p->buf, type);
148 /*----- That's all, folks -------------------------------------------------*/