-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
cross-tree: convert deprecated later() to yield()
A recent patch deprecated the later() function, splitting its work to yield() and check_for_io_immediately(). The result was numerous deprecation warnings when building Seastar and its tests, so this patch sets out replace every call to later() by yield() - because as far as I can tell, non of the callers of later() needed check_for_io_immediately(). While doing this, I noticed that some of the code using later() (and now yield()) were missing an explicit include of <seastar/util/later.hh>. This is something we'll probably regret later, so I took the opportunity to also add the missing include. Signed-off-by: Nadav Har'El <nyh@scylladb.com> Message-Id: <20220110160202.573719-1-nyh@scylladb.com>
- Loading branch information
Showing
10 changed files
with
58 additions
and
56 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.