You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by bm...@apache.org on 2015/09/01 03:00:00 UTC

mesos git commit: Fixed a non-plural variable name in perf.hpp.

Repository: mesos
Updated Branches:
  refs/heads/master 5fff044c3 -> f54fa513d


Fixed a non-plural variable name in perf.hpp.


Project: http://git-wip-us.apache.org/repos/asf/mesos/repo
Commit: http://git-wip-us.apache.org/repos/asf/mesos/commit/f54fa513
Tree: http://git-wip-us.apache.org/repos/asf/mesos/tree/f54fa513
Diff: http://git-wip-us.apache.org/repos/asf/mesos/diff/f54fa513

Branch: refs/heads/master
Commit: f54fa513dc52a4b3e3696aacd0e71373eada3817
Parents: 5fff044
Author: Benjamin Mahler <be...@gmail.com>
Authored: Mon Aug 31 17:59:49 2015 -0700
Committer: Benjamin Mahler <be...@gmail.com>
Committed: Mon Aug 31 17:59:49 2015 -0700

----------------------------------------------------------------------
 src/linux/perf.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mesos/blob/f54fa513/src/linux/perf.hpp
----------------------------------------------------------------------
diff --git a/src/linux/perf.hpp b/src/linux/perf.hpp
index b77b61d..fbb7649 100644
--- a/src/linux/perf.hpp
+++ b/src/linux/perf.hpp
@@ -54,7 +54,7 @@ process::Future<mesos::PerfStatistics> sample(
 // e.g., mesos/test for /sys/fs/cgroup/perf_event/mesos/test.
 process::Future<hashmap<std::string, mesos::PerfStatistics>> sample(
     const std::set<std::string>& events,
-    const std::set<std::string>& cgroup,
+    const std::set<std::string>& cgroups,
     const Duration& duration);