Displaying 6 results from an estimated 6 matches for "linux_platform".
2010 Apr 21
1
[PATCH matahari] Created a new platform-abstraction layer named Platform.
...implementation, LinuxPlatform, which is by
default included in the build. Later code will refactor the build
process to include the appropriate implementation depending on the
target platform.
Signed-off-by: Darryl L. Pierce <dpierce at redhat.com>
---
src/Makefile.am | 4 ++
src/linux_platform.cpp | 117 ++++++++++++++++++++++++++++++++++++++++++++++++
src/linux_platform.h | 35 ++++++++++++++
src/platform.cpp | 35 ++++++++++++++
src/platform.h | 62 +++++++++++++++++++++++++
src/processors.cpp | 93 ++------------------------------------
6 files changed, 25...
2010 Apr 26
0
[PATCH matahari] Created the NetworkDevice agent.
Created a new class to represent network interface devices, named
NetworkDeviceAgent.
Signed-off-by: Darryl L. Pierce <dpierce at redhat.com>
---
src/Makefile.am | 9 +-
src/host.cpp | 26 +++--
src/host.h | 4 +-
src/linux_platform.cpp | 70 +++++++++++
src/linux_platform.h | 4 +
src/networkdevice.cpp | 49 ++++++++
src/networkdevice.h | 52 +++++++++
src/nic.cpp | 297 ------------------------------------------------
src/nic.h | 95 ---------------
src/platform.h | 5 +
s...
2010 May 24
0
[PATCH matahari] Moves the CPU properties into the Host API space.
...average statistic is updated on the host.
Signed-off-by: Darryl L. Pierce <dpierce at redhat.com>
---
src/Makefile.am | 11 +------
src/host.cpp | 33 +++++++++++++++++-----
src/host.h | 10 ++++---
src/hostlistener.h | 1 +
src/linux_platform.cpp | 10 +++---
src/linux_platform.h | 2 +-
src/main.cpp | 3 --
src/platform.h | 18 +++++-------
src/processors.cpp | 63 -------------------------------------------
src/processors.h | 46 -------------------------------...
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 13
0
[PATCH matahari] Moving QMF functionality into a transport layer.
...ile.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
+ processors.h \
+ qmf/hostagent.cpp \
+ qmf/hostagent.h
$(generated_file_list): $(generated_file_list)
diff --git a/src/host.cpp b/src/host.cpp
inde...
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.