| Index: base/threading/platform_thread_mac.mm
|
| ===================================================================
|
| --- base/threading/platform_thread_mac.mm (revision 106858)
|
| +++ base/threading/platform_thread_mac.mm (working copy)
|
| @@ -77,7 +77,7 @@
|
| THREAD_STANDARD_POLICY_COUNT);
|
|
|
| if (result != KERN_SUCCESS)
|
| - VLOG(1) << "thread_policy_set() failure: " << result;
|
| + DVLOG(1) << "thread_policy_set() failure: " << result;
|
| }
|
|
|
| // Enables time-contraint policy and priority suitable for low-latency,
|
| @@ -100,7 +100,7 @@
|
| (thread_policy_t)&policy,
|
| THREAD_EXTENDED_POLICY_COUNT);
|
| if (result != KERN_SUCCESS) {
|
| - VLOG(1) << "thread_policy_set() failure: " << result;
|
| + DVLOG(1) << "thread_policy_set() failure: " << result;
|
| return;
|
| }
|
|
|
| @@ -112,7 +112,7 @@
|
| (thread_policy_t)&precedence,
|
| THREAD_PRECEDENCE_POLICY_COUNT);
|
| if (result != KERN_SUCCESS) {
|
| - VLOG(1) << "thread_policy_set() failure: " << result;
|
| + DVLOG(1) << "thread_policy_set() failure: " << result;
|
| return;
|
| }
|
|
|
| @@ -156,7 +156,7 @@
|
| (thread_policy_t)&time_constraints,
|
| THREAD_TIME_CONSTRAINT_POLICY_COUNT);
|
| if (result != KERN_SUCCESS)
|
| - VLOG(1) << "thread_policy_set() failure: " << result;
|
| + DVLOG(1) << "thread_policy_set() failure: " << result;
|
|
|
| return;
|
| }
|
|
|