Date: Tue, 24 Sep 2002 10:22:47 -0700 From: Terry Lambert <tlambert2@mindspring.com> To: Daniel Eischen <eischen@pcnet1.pcnet.com> Cc: Andriy Gapon <avg@icyb.net.ua>, julian@elischer.org, hackers@FreeBSD.org Subject: Re: libc_r in stable Message-ID: <3D909F67.CE03D475@mindspring.com> References: <Pine.GSO.4.10.10209241304490.29920-100000@pcnet1.pcnet.com>
next in thread | previous in thread | raw e-mail | index | archive | help
Daniel Eischen wrote: > > Set SA_RESTART in the sa_flags of the sigaction for the scheduling > > signal. Use "man sigaction" for details. > > Yes, for application installed signal handlers. > > Try this for library installed signal handlers (patch > to -current). > > http://people.freebsd.org/~deischen/libc_r.diffs Most of this diff is good, but... - act.sa_flags = SA_RESTART | SA_SIGINFO; + act.sa_flags = SA_RESTART | SA_SIGINFO | SA_RESTART; Setting the bejesus out of the bit probably isn't more effective than setting it once. 8-) 8-) 8-). -- Terry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-hackers" in the body of the message
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?3D909F67.CE03D475>