From: Daniel Stenberg Date: Thu, 7 Dec 2000 09:09:26 +0000 (+0000) Subject: Added SA_RESTART since (some) HPUX doesn't have that define and it doesn't X-Git-Tag: curl-7_5_2~47 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=69abefc936bd00d7e991acab71f811b9750bf8ba;p=thirdparty%2Fcurl.git Added SA_RESTART since (some) HPUX doesn't have that define and it doesn't need it --- diff --git a/lib/url.c b/lib/url.c index 006644f411..b2e47b7ed6 100644 --- a/lib/url.c +++ b/lib/url.c @@ -723,7 +723,10 @@ static CURLcode _connect(CURL *curl, CURLconnect **in_connect) #ifdef HAVE_SIGACTION sigaction(SIGALRM, NULL, &sigact); sigact.sa_handler = alarmfunc; +#ifdef SA_RESTART + /* HPUX doesn't have SA_RESTART but defaults to that behaviour! */ sigact.sa_flags &= ~SA_RESTART; +#endif sigaction(SIGALRM, &sigact, NULL); #else /* no sigaction(), revert to the much lamer signal() */