unnecessary disable_interrupts (#69)

This commit is contained in:
Costa Vitor 2009-05-26 16:57:27 -05:00
parent 3d9bd1a49f
commit e6129e84b7

View File

@ -63,11 +63,9 @@ run_goal(Goal, Result0) :-
). ).
run_goal(_, _) :- run_goal(_, _) :-
yap_hacks:disable_interrupts,
% make sure we're not getting an extraneous interrupt if we terminate early.... % make sure we're not getting an extraneous interrupt if we terminate early....
alarm(0,_,_), alarm(0,_,_),
fail. fail.
complete_time_out :- complete_time_out :-
alarm(0,_,_), alarm(0,_,_).
yap_hacks:enable_interrupts.