diff options
author | Christian Duerr <contact@christianduerr.com> | 2020-12-17 00:52:03 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-17 00:52:03 +0000 |
commit | 1e9b550f447bb4e1caf1e5ad36f760f1ef869b25 (patch) | |
tree | f9e7624e9b313ab84f28ee8d468348b46114ba54 /CHANGELOG.md | |
parent | bb4fddd59365ec9bbff43b48da5fca23e9c55a99 (diff) | |
download | alacritty-1e9b550f447bb4e1caf1e5ad36f760f1ef869b25.tar.gz alacritty-1e9b550f447bb4e1caf1e5ad36f760f1ef869b25.zip |
Increase file watcher delay on BSD
Since BSD does not support inotify polling in the `notify` crate and
instead relies on manual filesystem polling, this would cause a high CPU
usage at 100 polls a second.
A separate polling rate of once per second is now used for platforms
which do not support filesystem polling, allowing users to still make
use of live config reload on BSD.
Fixes #3871.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 55e16249..e98ae125 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Cursor position not reported to apps when mouse is moved with button held outside of window - No live config update when starting Alacritty with a broken configuration file - PTY not drained to the end with the `--hold` flag enabled +- High CPU usage on BSD with live config reload enabled ### Removed |