Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(597)

Unified Diff: runtime/bin/process_fuchsia.cc

Issue 2688303003: Use the new mx_object_wait_* name (Closed)
Patch Set: Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | runtime/bin/run_vm_tests_fuchsia.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/process_fuchsia.cc
diff --git a/runtime/bin/process_fuchsia.cc b/runtime/bin/process_fuchsia.cc
index 1604772f30e96cc2d66c33b452d83a14b1573ed7..02c5055962649edcc9514bb15ece1bd0a20e97f4 100644
--- a/runtime/bin/process_fuchsia.cc
+++ b/runtime/bin/process_fuchsia.cc
@@ -236,15 +236,15 @@ class ExitCodeHandler {
item_count_ = 1;
while (!do_shutdown_) {
- LOG_INFO("ExitCodeHandler Calling mx_handle_wait_many: %ld items\n",
+ LOG_INFO("ExitCodeHandler Calling mx_object_wait_many: %ld items\n",
item_count_);
mx_status_t status =
- mx_handle_wait_many(items_, item_count_, MX_TIME_INFINITE);
+ mx_object_wait_many(items_, item_count_, MX_TIME_INFINITE);
if (status < 0) {
FATAL1("Exit code handler handle wait failed: %s\n",
mx_status_get_string(status));
}
- LOG_INFO("ExitCodeHandler mx_handle_wait_many returned\n");
+ LOG_INFO("ExitCodeHandler mx_object_wait_many returned\n");
bool have_interrupt = false;
intptr_t remove_count = 0;
« no previous file with comments | « no previous file | runtime/bin/run_vm_tests_fuchsia.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698