mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-14 08:58:01 +00:00
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:
parent
06bd1e9347
commit
5abc6060a4
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue