| OLD | NEW | 
|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be | 
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. | 
| 4 | 4 | 
| 5 #include "ipc/ipc_perftest_support.h" | 5 #include "ipc/ipc_perftest_support.h" | 
| 6 | 6 | 
|  | 7 #include <stddef.h> | 
|  | 8 #include <stdint.h> | 
|  | 9 | 
| 7 #include <algorithm> | 10 #include <algorithm> | 
| 8 #include <string> | 11 #include <string> | 
| 9 | 12 | 
| 10 #include "base/logging.h" | 13 #include "base/logging.h" | 
| 11 #include "base/macros.h" | 14 #include "base/macros.h" | 
| 12 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" | 
| 13 #include "base/pickle.h" | 16 #include "base/pickle.h" | 
| 14 #include "base/strings/stringprintf.h" | 17 #include "base/strings/stringprintf.h" | 
| 15 #include "base/test/perf_time_logger.h" | 18 #include "base/test/perf_time_logger.h" | 
| 16 #include "base/test/test_io_thread.h" | 19 #include "base/test/test_io_thread.h" | 
| (...skipping 355 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 372   auto set_result = SetThreadAffinityMask(GetCurrentThread(), old_affinity_); | 375   auto set_result = SetThreadAffinityMask(GetCurrentThread(), old_affinity_); | 
| 373   DCHECK_NE(0u, set_result); | 376   DCHECK_NE(0u, set_result); | 
| 374 #elif defined(OS_LINUX) | 377 #elif defined(OS_LINUX) | 
| 375   auto set_result = sched_setaffinity(0, sizeof(old_cpuset_), &old_cpuset_); | 378   auto set_result = sched_setaffinity(0, sizeof(old_cpuset_), &old_cpuset_); | 
| 376   DCHECK_EQ(0, set_result); | 379   DCHECK_EQ(0, set_result); | 
| 377 #endif | 380 #endif | 
| 378 } | 381 } | 
| 379 | 382 | 
| 380 }  // namespace test | 383 }  // namespace test | 
| 381 }  // namespace IPC | 384 }  // namespace IPC | 
| OLD | NEW | 
|---|