search for: d2da776

Displaying 4 results from an estimated 4 matches for "d2da776".

2010 May 13
0
[PATCH matahari] Moving QMF functionality into a transport layer.
..._beeping = beeping; +} - for(vector<NetworkDeviceAgent>::iterator iter = networkdevices.begin(); - iter != networkdevices.end(); - iter++) - { - iter->update(); - } +bool +Host::is_beeping() const +{ + return _beeping; } diff --git a/src/host.h b/src/host.h index d2da776..b2a4a30 100644 --- a/src/host.h +++ b/src/host.h @@ -20,39 +20,57 @@ * also available at http://www.gnu.org/copyleft/gpl.html. */ -#include <qpid/management/Manageable.h> -#include <qpid/management/ManagementObject.h> -#include <qpid/agent/ManagementAgent.h> +#include <s...
2010 May 19
2
Squashed commits...
Refactoring the previous patch ended up creating two deltas. This patch pushes them both together into a single commit.
2010 Apr 26
0
[PATCH matahari] Created the NetworkDevice agent.
...- } } void HostAgent::update(void) { processors.update(); + + for(vector<NetworkDeviceAgent>::iterator iter = networkdevices.begin(); + iter != networkdevices.end(); + iter++) + { + iter->update(); + } } diff --git a/src/host.h b/src/host.h index ba5a1ed..d2da776 100644 --- a/src/host.h +++ b/src/host.h @@ -26,7 +26,7 @@ #include "qmf/com/redhat/matahari/Host.h" -#include "nic.h" +#include "networkdevice.h" #include "processors.h" using namespace qpid::management; @@ -39,7 +39,7 @@ class HostAgent : public Ma...
2010 Apr 26
2
Patch supercedes previous patch...
In looking at the code I realized that the last of the HAL depenencies were removed with this patch. So, I'm pushing an updated patch that contains none of the HAL code in it.