Re: [Tuxnes-devel] A fue minor patches too 0.75.
Brought to you by:
tmmm
From: Jason D. S. <jd...@us...> - 2004-07-28 17:58:22
|
Mike Mestnik wrote: > Today when I built 0.75 I had to add AM_PROG_AS to configure.in. There > was several AC_PROG lines and I was not sure witch one I should use AC or > AM. > > There was also a race condition when the emulator was paused, I'l have to > look into adding a select for this. It shoulden't be a big deal to just > halt execution inside the input handeler should it? > For CVS HEAD I'd also like to see if calling a generic input(alarm signal) > handeler(or a timer) for emulator type > events(pause,save,snapshoot,quit,ect) so were not relying on the nes rom > to pool these for us. It needs to pause while waiting for an "event". An "event" may be input from keyboard or mouse or any arbitrary X (or whatever GUI) event. Using a select loop _may_ work here since select will exit when there's an interrupt/signal received (but I don't know if the above events generate interrupts). In that case all FD sets should be NULL. jason |