search for: generated_file_list

Displaying 12 results from an estimated 12 matches for "generated_file_list".

2010 Mar 16
0
[PATCH] Added the new Processors agent.
...deletions(-) create mode 100644 src/processors.cpp create mode 100644 src/processors.h diff --git a/src/Makefile.am b/src/Makefile.am index 8c94fba..ee30443 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -5,14 +5,16 @@ sbin_PROGRAMS = matahari first = qmf/com/redhat/matahari/Host.cpp generated_file_list = \ - qmf/com/redhat/matahari/CPU.cpp\ - qmf/com/redhat/matahari/NIC.cpp\ - qmf/com/redhat/matahari/Package.cpp\ - qmf/com/redhat/matahari/Host.h\ - qmf/com/redhat/matahari/CPU.h\ - qmf/com/redhat/matahari/NIC.h\ - qmf/com/redhat/matahari/Package.h\ - qmf/com/redhat/matahari/ArgsNICIdentify_nic.h +...
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 May 24
0
[PATCH matahari] Moves the CPU properties into the Host API space.
...00644 src/processors.h delete mode 100644 src/processorslistener.h delete mode 100644 src/qmf/processorsagent.cpp delete mode 100644 src/qmf/processorsagent.h diff --git a/src/Makefile.am b/src/Makefile.am index 498ee72..7daea07 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -9,9 +9,7 @@ generated_file_list = \ qmf/com/redhat/matahari/NetworkDevice.cpp \ qmf/com/redhat/matahari/NetworkDevice.h \ qmf/com/redhat/matahari/Package.cpp \ - qmf/com/redhat/matahari/Package.h \ - qmf/com/redhat/matahari/Processors.cpp \ - qmf/com/redhat/matahari/Processors.h + qmf/com/redhat/matahari/Package.h nodist...
2010 Apr 19
1
[PATCH matahari] Removes all code for the previous CPUWrapper class.
...--- 6 files changed, 0 insertions(+), 374 deletions(-) delete mode 100644 src/cpu.cpp delete mode 100644 src/cpu.h diff --git a/src/Makefile.am b/src/Makefile.am index b4668b9..7606e20 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -6,8 +6,6 @@ first = qmf/com/redhat/matahari/Host.cpp generated_file_list = \ qmf/com/redhat/matahari/ArgsNICIdentify_nic.h \ - qmf/com/redhat/matahari/CPU.cpp \ - qmf/com/redhat/matahari/CPU.h \ qmf/com/redhat/matahari/Host.h \ qmf/com/redhat/matahari/NIC.cpp \ qmf/com/redhat/matahari/NIC.h \ @@ -19,8 +17,6 @@ generated_file_list = \ nodist_matahari_SOURCES = $...
2010 May 27
1
[PATCH matahari] Introduces a multiplexer for taking requests and mapping them to APIs.
...Makefile.am index 498ee72..7b5245a 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -32,7 +32,9 @@ matahari_SOURCES = \ qmf/hostagent.cpp \ qmf/hostagent.h \ qmf/processorsagent.cpp \ - qmf/processorsagent.h + qmf/processorsagent.h \ + virtio/multiplexer.cpp \ + virtio/multiplexer.h $(generated_file_list): $(generated_file_list) @@ -44,6 +46,6 @@ CLEANFILES = $(generated_file_list) $(first) matahari_CPPFLAGS = -fno-strict-aliasing matahari_LDFLAGS = -L/usr/local/lib -matahari_LDADD = -lqmf $(LIBVIRT_LIBS) $(PCRE_LIBS) $(UDEV_LIBS) +matahari_LDADD = -lqmf -lqpidclient -lqpidcommon $(LIBVIRT_LI...
2010 Apr 19
1
[PATCH matahari] Replaces the existing HAL code for ProcessorAgent with udev.
...@@ -1,4 +1,4 @@ -INCLUDES = -I$(top_srcdir)/src/qmf/com/redhat/matahari $(HAL_CFLAGS) $(LIBVIRT_CFLAGS) $(PCRE_CFLAGS) +INCLUDES = -I$(top_srcdir)/src/qmf/com/redhat/matahari $(HAL_CFLAGS) $(LIBVIRT_CFLAGS) $(PCRE_CFLAGS) $(UDEV_CFLAGS) sbin_PROGRAMS = matahari @@ -41,6 +41,6 @@ CLEANFILES = $(generated_file_list) $(first) matahari_CPPFLAGS = -fno-strict-aliasing matahari_LDFLAGS = -L/usr/local/lib -matahari_LDADD = -lqmf $(HAL_LIBS) $(LIBVIRT_LIBS) $(PCRE_LIBS) +matahari_LDADD = -lqmf $(HAL_LIBS) $(LIBVIRT_LIBS) $(PCRE_LIBS) $(UDEV_LIBS) dist_pkgdata_DATA = schema.xml diff --git a/src/processors.cpp...
2010 May 13
0
[PATCH matahari] Moving QMF functionality into a transport layer.
...ndex ad6d70b..8e12062 100644 --- a/.gitignore +++ b/.gitignore @@ -17,4 +17,4 @@ stamp-h1 *~ src/matahari -src/qmf +src/qmf/com diff --git a/src/Makefile.am b/src/Makefile.am index aed9e19..530abd7 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -18,6 +18,10 @@ nodist_matahari_SOURCES = $(generated_file_list) $(first) matahari_SOURCES = \ host.cpp \ host.h \ + host_transport.cpp \ + host_transport.h \ + hostimpl.cpp \ + hostimpl.h \ linux_platform.cpp \ linux_platform.h \ main.cpp \ @@ -26,7 +30,9 @@ matahari_SOURCES = \ platform.cpp \ platform.h \ processors.cpp \ - processors.h + pro...
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.
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 May 25
3
Supercedes previous patch...
The previous patch, for whatever reason, fails to apply on top of tip. This patch is reimplemented and, hopefully, fixed.
2010 Apr 26
0
[PATCH matahari] Created the NetworkDevice agent.
...e 100644 src/networkdevice.h delete mode 100644 src/nic.cpp delete mode 100644 src/nic.h diff --git a/src/Makefile.am b/src/Makefile.am index e4f394d..92ccec7 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -5,10 +5,9 @@ sbin_PROGRAMS = matahari first = qmf/com/redhat/matahari/Host.cpp generated_file_list = \ - qmf/com/redhat/matahari/ArgsNICIdentify_nic.h \ qmf/com/redhat/matahari/Host.h \ - qmf/com/redhat/matahari/NIC.cpp \ - qmf/com/redhat/matahari/NIC.h \ + qmf/com/redhat/matahari/NetworkDevice.cpp \ + qmf/com/redhat/matahari/NetworkDevice.h \ qmf/com/redhat/matahari/Package.cpp \ qmf/com/...