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

Side by Side Diff: src/platform/microbenchmark/benchmarks/getpid.cc

Issue 481009: Add a simple microbenchmark framework, packaging, and sample tests. (Closed)
Patch Set: fix the bad comment Created 11 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2009 The Chromium OS Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 // Some portions Copyright (c) 2009 The Chromium Authors.
5 //
6 // Microbenchmark of getpid()
7 #include "microbenchmark/microbenchmark.h"
8
9 #include <syscall.h>
10 namespace chromeos {
11 namespace benchmarks {
12
13 static void GetPid(bool scaffold_only) {
14 if (!scaffold_only) syscall(__NR_getpid);
15 }
16 CHROMEOS_MICROBENCHMARK(GetPid, 1000000);
17
18 } // namespace benchmarks
19 } // namespace chromeos
OLDNEW
« no previous file with comments | « src/platform/microbenchmark/SConstruct ('k') | src/platform/microbenchmark/benchmarks/readwrite.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698