Date: Thu, 19 Feb 2004 05:47:12 -0800 (PST) From: Mike Makonnen <mtm@FreeBSD.org> To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/lib/libthr/thread thr_sig.c Message-ID: <200402191347.i1JDlCit063544@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
mtm 2004/02/19 05:47:12 PST FreeBSD src repository Modified files: lib/libthr/thread thr_sig.c Log: Don't wake up the thread after the signal handler has been executed. On return from the signal handler the call will either be restarted or EINTR will be returned, but it will not go back to its previous state. So, it is sufficient to simply change the state to 'running' without actually trying to wake up the thread. Revision Changes Path 1.8 +1 -1 src/lib/libthr/thread/thr_sig.c
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200402191347.i1JDlCit063544>