This is the mail archive of the cygwin mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: signal is not delivered to the handler


I have an issue with lrzsz-0.12.20.tar.gz compiled on cygwin 1.5.19-4
where lrx never timeout when xmodem error occured (hangs forever).

It look related to what Michael as reported.  I have compiled test.c
from Michael:  Same result where second signal is not delivered.  So I
have checkout cygwin from cvs and build cygwin1.dll 1.5.20(0.155/4/2)
wich solved Michael issue but infortunatly lrzsz still hangs.

It look like read() should exit on SIGALRM but it's not the case.

zreadline.c
(...)

 signal(SIGALRM, zreadline_alarm_handler);
 alarm(n);
}
else if (Verbose > 5)
 vstringf("Calling read: Readnum=%d ",readline_readnum);

readline_ptr=readline_buffer;
readline_left=read(readline_fd, readline_ptr, readline_readnum);

(...)

lrzsz available here:

http://www.ohse.de/uwe/software/lrzsz.html

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]