Message ID | 20250314210909.3776678-3-gitster@pobox.com (mailing list archive) |
---|---|
State | Superseded |
Headers | show |
Series | -Wunreachable-code | expand |
On Fri, Mar 14, 2025 at 02:09:08PM -0700, Junio C Hamano wrote: > From: Jeff King <peff@peff.net> > > Since enabling -Wunreachable-code, builds with clang on macOS now fail, > complaining that the die_errno() call in: > > if (sigfillset(&all)) > die_errno("sigfillset"); Hmm. Would it have made sense to swap the order of this and the first patch so we don't have a DEVELOPER=1 breakage (for macOS with Clang) in history? I think it's too late now since this topic is already on 'next', but it occurred to me idly while reading this patch. Thanks, Taylor
Taylor Blau <me@ttaylorr.com> writes: > On Fri, Mar 14, 2025 at 02:09:08PM -0700, Junio C Hamano wrote: >> From: Jeff King <peff@peff.net> >> >> Since enabling -Wunreachable-code, builds with clang on macOS now fail, >> complaining that the die_errno() call in: >> >> if (sigfillset(&all)) >> die_errno("sigfillset"); > > Hmm. Would it have made sense to swap the order of this and the first > patch so we don't have a DEVELOPER=1 breakage (for macOS with Clang) in > history? > > I think it's too late now since this topic is already on 'next', but it > occurred to me idly while reading this patch. I thought db1d1f5d (config.mak.dev: enable -Wunreachable-code, 2025-03-14) aka jk/use-wunreachable-code-for-devs~2 is still out of 'next'?
Junio C Hamano <gitster@pobox.com> writes: > Taylor Blau <me@ttaylorr.com> writes: > >> On Fri, Mar 14, 2025 at 02:09:08PM -0700, Junio C Hamano wrote: >>> From: Jeff King <peff@peff.net> >>> >>> Since enabling -Wunreachable-code, builds with clang on macOS now fail, >>> complaining that the die_errno() call in: >>> >>> if (sigfillset(&all)) >>> die_errno("sigfillset"); >> >> Hmm. Would it have made sense to swap the order of this and the first >> patch so we don't have a DEVELOPER=1 breakage (for macOS with Clang) in >> history? >> >> I think it's too late now since this topic is already on 'next', but it >> occurred to me idly while reading this patch. > > I thought db1d1f5d (config.mak.dev: enable -Wunreachable-code, > 2025-03-14) aka jk/use-wunreachable-code-for-devs~2 is still out of > 'next'? Ah, I did revert an earlier one-commit topic out of 'next'. Perhaps I didn't tell What's cooking about it.
diff --git a/run-command.c b/run-command.c index 402138b8b5..d527c46175 100644 --- a/run-command.c +++ b/run-command.c @@ -515,7 +515,15 @@ static void atfork_prepare(struct atfork_state *as) { sigset_t all; - if (sigfillset(&all)) + /* + * Do not use the return value of sigfillset(). It is transparently 0 + * on some platforms, meaning a clever compiler may complain that + * the conditional body is dead code. Instead, check for error via + * errno, which outsmarts the compiler. + */ + errno = 0; + sigfillset(&all); + if (errno) die_errno("sigfillset"); #ifdef NO_PTHREADS if (sigprocmask(SIG_SETMASK, &all, &as->old))