mirror of
https://github.com/fish-shell/fish-shell.git
synced 2025-02-22 03:21:53 +08:00
Disable SIGIO notifier on WSL
It currently does not trigger the uvar notifier and fails the automated tests. See #7429.
This commit is contained in:
parent
ea1dffd53d
commit
640f4444f5
@ -1572,6 +1572,10 @@ universal_notifier_t::notifier_strategy_t universal_notifier_t::resolve_default_
|
||||
#elif defined(__CYGWIN__)
|
||||
return strategy_shmem_polling;
|
||||
#elif defined(SIGIO)
|
||||
// The SIGIO notifier does not yet work on WSL. See #7429
|
||||
if (is_windows_subsystem_for_linux()) {
|
||||
return strategy_named_pipe;
|
||||
}
|
||||
return strategy_sigio;
|
||||
#else
|
||||
return strategy_named_pipe;
|
||||
|
Loading…
x
Reference in New Issue
Block a user