From 69abefc936bd00d7e991acab71f811b9750bf8ba Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Thu, 7 Dec 2000 09:09:26 +0000 Subject: Added SA_RESTART since (some) HPUX doesn't have that define and it doesn't need it --- lib/url.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'lib') diff --git a/lib/url.c b/lib/url.c index 006644f41..b2e47b7ed 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() */ -- cgit v1.2.3