mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-05-22 10:15:43 +02:00
5928e851dd
Bumps [github.com/sasha-s/go-deadlock](https://github.com/sasha-s/go-deadlock) from 0.3.6 to 0.3.9. - [Release notes](https://github.com/sasha-s/go-deadlock/releases) - [Commits](https://github.com/sasha-s/go-deadlock/compare/v0.3.6...v0.3.9) --- updated-dependencies: - dependency-name: github.com/sasha-s/go-deadlock dependency-version: 0.3.9 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
10 lines
251 B
Go
10 lines
251 B
Go
//go:build deadlock_disable
|
|
|
|
package deadlock
|
|
|
|
// shouldDisableTimerPool always returns true when deadlock detection is disabled
|
|
// since there's no timer pool or deadlock detection happening anyway
|
|
func shouldDisableTimerPool() bool {
|
|
return true
|
|
}
|