1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-02-20 20:09:11 +00:00

Adding missing documentation for module.

This commit is contained in:
Sergei Trofimov 2015-04-28 14:44:16 +01:00
parent 68ae8b9277
commit 715438e486
2 changed files with 10 additions and 0 deletions

View File

@ -135,6 +135,12 @@ class CpusetController(CgroupController):
class Cgroups(Module):
name = 'cgroups'
description = """
Adds cgroups query and manupution APIs to a Device interface.
Currently, only cpusets controller is supported.
"""
capabilities = ['cgroups']
controllers = [

View File

@ -78,6 +78,10 @@ class CpuidleState(object):
class Cpuidle(Module):
name = 'cpuidle'
description = """
Adds cpuidle state query and manupution APIs to a Device interface.
"""
capabilities = ['cpuidle']
root_path = '/sys/devices/system/cpu/cpuidle'