I always get a error like this when i press Ctrl C to terminate my
program. Is there a better way to terminate a prob.
? Error in my_thread_global_end(): 1 threads didn’t exit
I always get a error like this when i press Ctrl C to terminate my
program. Is there a better way to terminate a prob.
? Error in my_thread_global_end(): 1 threads didn’t exit
If I am not mistaken it’s the SIGINT handler that produces the trace
(assuming
you use a posix system):
Try:
Signal::trap(‘INT’) do
exit
end
…on windows you might have to catch the ‘EXIT’ signal instead… (?)
martin
This forum is not affiliated to the Ruby language, Ruby on Rails framework, nor any Ruby applications discussed here.
Sponsor our Newsletter | Privacy Policy | Terms of Service | Remote Ruby Jobs