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

Unified Diff: third_party/crashpad/crashpad/util/mach/mach_message_server_test.cc

Issue 2555353002: Update Crashpad to 32981a3ee9d7c2769fb27afa038fe2e194cfa329 (Closed)
Patch Set: fix readme Created 4 years 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
Index: third_party/crashpad/crashpad/util/mach/mach_message_server_test.cc
diff --git a/third_party/crashpad/crashpad/util/mach/mach_message_server_test.cc b/third_party/crashpad/crashpad/util/mach/mach_message_server_test.cc
index fc45e26236b6eb8caa7253c94fab1633e9369b2e..a2d2eb1fafaba24079aa8849d86c8baebe134d2b 100644
--- a/third_party/crashpad/crashpad/util/mach/mach_message_server_test.cc
+++ b/third_party/crashpad/crashpad/util/mach/mach_message_server_test.cc
@@ -321,9 +321,9 @@ class TestMachMessageServer : public MachMessageServer::Interface,
kern_return_t kr;
if (options_.child_send_all_requests_before_receiving_any_replies) {
- // On Mac OS X 10.10, the queue limit of a new Mach port seems to be 2
- // by default, which is below the value of MACH_PORT_QLIMIT_DEFAULT. Set
- // the port’s queue limit explicitly here.
+ // On OS X 10.10, the queue limit of a new Mach port seems to be 2 by
+ // default, which is below the value of MACH_PORT_QLIMIT_DEFAULT. Set the
+ // port’s queue limit explicitly here.
mach_port_limits limits = {};
limits.mpl_qlimit = MACH_PORT_QLIMIT_DEFAULT;
kr = mach_port_set_attributes(mach_task_self(),

Powered by Google App Engine
This is Rietveld 408576698