Displaying 4 results from an estimated 4 matches for "0d22211".
Did you mean:
0d220211
2010 Mar 16
0
[PATCH] Added the new Processors agent.
...\
+ processors.h
-$(generated_file_list): $(first)
+$(generated_file_list): $(generated_file_list)
-$(first): schema.xml
+$(first): schema.xml $(generated_file_list)
qmf-gen -o ./qmf ./schema.xml
BUILT_SOURCES = $(generated_file_list) $(first)
diff --git a/src/host.cpp b/src/host.cpp
index 0d22211..c81d2f1 100644
--- a/src/host.cpp
+++ b/src/host.cpp
@@ -78,6 +78,8 @@ void HostWrapper::setupQMFObjects(ManagementAgent *agent)
agent->addObject(mgmt_object);
syncQMFHostObject();
+ processors.setup(agent);
+
// Iterate over list and set up CPU objects
for (vector<C...
2010 Mar 22
1
Small change and resend...
This patch includes one small change: the Processors::get_load_average()
method is now const since it does not change the object's state.
2010 Mar 22
1
Resend with loadavg as a statistic...
After some feedback from Slow, mainly about the load_average API
being a method rather than an ongoing statistic. So I've converted
the code over to instead update the load average statistic on a
regular basis.
2010 Mar 15
0
[PATCH] Updated the list of ignored files and fixed whitespace issues.
...+++ b/src/hal.h
@@ -1,4 +1,4 @@
-/* Copyright (C) 2009 Red Hat, Inc.
+/* hal.h - Copyright (C) 2009 Red Hat, Inc.
* Written by Arjun Roy <arroy at redhat.com>
*
* This program is free software; you can redistribute it and/or modify
diff --git a/src/host.cpp b/src/host.cpp
index a9197e3..0d22211 100644
--- a/src/host.cpp
+++ b/src/host.cpp
@@ -1,4 +1,4 @@
-/* Copyright (C) 2009 Red Hat, Inc.
+/* host.cpp - Copyright (C) 2009 Red Hat, Inc.
* Written by Arjun Roy <arroy at redhat.com>
*
* This program is free software; you can redistribute it and/or modify
@@ -49,17 +49,17 @@ ost...