diff options
author | kulikov <kulikov@yandex-team.com> | 2022-11-03 14:50:26 +0300 |
---|---|---|
committer | kulikov <kulikov@yandex-team.com> | 2022-11-03 14:50:26 +0300 |
commit | f6313e0ed2947ba490bb9b21781ec57cc839d1e9 (patch) | |
tree | a684fdf362652bfcc89f6f3d0d1c7333b9c84c12 /library/cpp/coroutine/engine/poller.h | |
parent | 65ab9f6a97c184f41f7a5de0b031336dd32c6d4f (diff) | |
download | ydb-f6313e0ed2947ba490bb9b21781ec57cc839d1e9.tar.gz |
,completely remove combined poller
- no significant perfomance gain by now;
- balancer doesn't use combined poller;
- tests over combined poller normally check only one part;
- poll and epoll have some differences in behaivor;
- there is probably a bug somewhere (uncaught exception on switch from poll to epoll).
Diffstat (limited to 'library/cpp/coroutine/engine/poller.h')
-rw-r--r-- | library/cpp/coroutine/engine/poller.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/library/cpp/coroutine/engine/poller.h b/library/cpp/coroutine/engine/poller.h index 8ea012c0fc..6116a604a6 100644 --- a/library/cpp/coroutine/engine/poller.h +++ b/library/cpp/coroutine/engine/poller.h @@ -8,7 +8,6 @@ enum class EContPoller { Default /* "default" */, - Combined /* "combined" */, Select /* "select" */, Poll /* "poll" */, Epoll /* "epoll" */, |