X-Git-Url: http://git.harvie.cz/?p=svn%2FCll1h%2F.git;a=blobdiff_plain;f=cll1.h;fp=cll1.h;h=48aa0a1d98c8b5e26f18764570592030785fc346;hp=6f49f720c607bcef29b040520888f2fb56a54ad6;hb=7e4d757514e0d9904d6b31b5a08760eff306a9f2;hpb=3f49056d3d4121eff6a0777c7b24c13c54fc0953 diff --git a/cll1.h b/cll1.h index 6f49f72..48aa0a1 100644 --- a/cll1.h +++ b/cll1.h @@ -197,7 +197,17 @@ extern unsigned RANDOM_SEED; #define Get_obj_as(ID,COMMUNITY,MEM,...) MEM ID=get_obj_as(COMMUNITY,MEM,INTERFACE,__VA_ARGS__) #define I_am(SELF,MEM) MEM SELF=(MEM)community /* .----------------------------------------------------------------------. - / 9. implementation of C<<1 library functions, updated 2008-01-26 xCh. + / 9. C<<1 setjmp()/longjmp() based exceptions, updated 2008-09-30 + '----------------------------------------------------------------------- */ +#include +#define try if(!(_exception_type=setjmp(_exception_env))) +#define fail(E) longjmp(_exception_env, (E)) +#define else_switch_exceptions else switch(_exception_type) +#define else_catch_exception(E) else if (_exception_type==(E)) +static jmp_buf _exception_env; +static int _exception_type; +/* .----------------------------------------------------------------------. + / 10. implementation of C<<1 library functions, updated 2008-01-26 xCh. '----------------------------------------------------------------------- */ /* later... #define _MALLOC void *_cll1_malloc(size_t size) { return malloc(size); } */ #define _CLL1_FPRINT(IOSTREAM) { int ofs=0; va_list ap; /* <-' */ for(va_start(ap,s);s!=NIL;s=va_arg(ap,char *)) { if(ofs)fputs(OFS,IOSTREAM);else ofs=1;/**/fputs(coalesce(s,NIL),IOSTREAM); } va_end(ap); fputs(EOL,IOSTREAM); }