mirror of
https://github.com/curl/curl.git
synced 2026-07-05 09:47:16 +03:00
Added SA_RESTART since (some) HPUX doesn't have that define and it doesn't
need it
This commit is contained in:
parent
dad2317e6e
commit
69abefc936
1 changed files with 3 additions and 0 deletions
|
|
@ -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() */
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue