Aucbvax.5393 net.2bsd-bugs utzoo!decvax!ucbvax!dist2 Sun Dec 6 02:55:07 1981 FIXED: a bug in src/clock.c Clock.c had not been properly converted to V7. It used the old method of interrupt handling, setexit() and reset() rather than setjmp() and longjmp(). The necessary fixes are diff src/clock.c.old src/clock.c: 4a5,7 > #include > jmp_buf env; > 11c14 < setexit(); --- > setjmp(env); 35c38 < reset(); --- > longjmp(env, 1); These changes should be applied on all tapes written before 10/27/81. Carl