summaryrefslogtreecommitdiffstats
path: root/base/file_util_linux.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/file_util_linux.cc')
-rw-r--r--base/file_util_linux.cc5
1 files changed, 4 insertions, 1 deletions
diff --git a/base/file_util_linux.cc b/base/file_util_linux.cc
index dd0c820..f7d4f6e 100644
--- a/base/file_util_linux.cc
+++ b/base/file_util_linux.cc
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -50,6 +50,9 @@ bool GetFileSystemType(const FilePath& path, FileSystemType* type) {
case 0x01021994: // tmpfs
*type = FILE_SYSTEM_MEMORY;
break;
+ case 0x27e0eb: // CGROUP
+ *type = FILE_SYSTEM_CGROUP;
+ break;
default:
*type = FILE_SYSTEM_OTHER;
}