Disable sigio notifier on FreeBSD

This fails for unknown reasons.

Not looking like a great *replacement* for the named pipe now, tbh.

See #7400.
This commit is contained in:
Fabian Homborg 2020-10-14 20:19:55 +02:00
parent 06bd1e9347
commit 5abc6060a4

View file

@ -1575,7 +1575,7 @@ universal_notifier_t::notifier_strategy_t universal_notifier_t::resolve_default_
#ifdef FISH_NOTIFYD_AVAILABLE
return strategy_notifyd;
// Note: We use POLL_IN to query SIGIO information, without it it is useless.
#elif defined(SIGIO) && defined(POLL_IN)
#elif defined(SIGIO) && defined(POLL_IN) && !defined(__FreeBSD__)
return strategy_sigio;
#elif defined(__CYGWIN__)
return strategy_shmem_polling;