# HG changeset patch # User gongo # Date 1203160771 -32400 # Node ID 6bc72fde66150c12eb0ed9ca901812df1616e700 # Parent f50c74835a9b249be2d92208a5dbeabd9739ba01 *** empty log message *** diff -r f50c74835a9b -r 6bc72fde6615 TaskManager/Cell/CellTaskManagerImpl.cc --- a/TaskManager/Cell/CellTaskManagerImpl.cc Sat Feb 16 20:05:35 2008 +0900 +++ b/TaskManager/Cell/CellTaskManagerImpl.cc Sat Feb 16 20:19:31 2008 +0900 @@ -2,6 +2,7 @@ #include #include #include "CellTaskManagerImpl.h" +#include "CellBufferManager.h" #include "types.h" void diff -r f50c74835a9b -r 6bc72fde6615 TaskManager/Cell/spe/CellDmaManager.cc --- a/TaskManager/Cell/spe/CellDmaManager.cc Sat Feb 16 20:05:35 2008 +0900 +++ b/TaskManager/Cell/spe/CellDmaManager.cc Sat Feb 16 20:19:31 2008 +0900 @@ -1,3 +1,4 @@ +#include #include #include "CellDmaManager.h" diff -r f50c74835a9b -r 6bc72fde6615 TaskManager/Cell/spe/CellScheduler.cc --- a/TaskManager/Cell/spe/CellScheduler.cc Sat Feb 16 20:05:35 2008 +0900 +++ b/TaskManager/Cell/spe/CellScheduler.cc Sat Feb 16 20:19:31 2008 +0900 @@ -4,7 +4,7 @@ #include "error.h" void -CellScheduler::init(MailManager *m) +CellScheduler::init_impl(void) { connector = new CellDmaManager; diff -r f50c74835a9b -r 6bc72fde6615 TaskManager/Makefile.cell --- a/TaskManager/Makefile.cell Sat Feb 16 20:05:35 2008 +0900 +++ b/TaskManager/Makefile.cell Sat Feb 16 20:19:31 2008 +0900 @@ -12,12 +12,12 @@ PPE_ALL_OBJS = $(KERN_PPE_OBJS) $(KERN_SCHED_OBJS) $(IMPL_CELL_OBJS) $(TARGET): $(PPE_ALL_OBJS) - ar crus $@ $(ALL_OBJS) + ar crus $@ $(PPE_ALL_OBJS) $(PPE_ALL_OBJS): %.o : %.cpp $(CC) $(CFLAGS) $(SPUCFLAGS) $(INCLUDE) -c $< -o $@ spe: $(CELL_SPE_OBJS) -$(CELL_SPE_OBJS): %.o %.cpp +$(CELL_SPE_OBJS): %.o : %.cpp $(SPUCC) $(CFLAGS) $(INCLUDE) -c $< -o $@ \ No newline at end of file diff -r f50c74835a9b -r 6bc72fde6615 TaskManager/Test/simple_render/Makefile --- a/TaskManager/Test/simple_render/Makefile Sat Feb 16 20:05:35 2008 +0900 +++ b/TaskManager/Test/simple_render/Makefile Sat Feb 16 20:19:31 2008 +0900 @@ -13,9 +13,9 @@ EXTRA_CFLAGS = `sdl-config --cflags` `xml2-config --cflags`\ -LIBS = `sdl-config --libs` -lSDL_image -Wl,-framework,OpenGL \ +LIBS = `sdl-config --libs` -lSDL_image -lGL \ `xml2-config --libs`\ - -L../../ -lmanager + -L../../ -lmanager -lspe2 -lpthread .SUFFIXES: .cpp .o diff -r f50c74835a9b -r 6bc72fde6615 TaskManager/Test/simple_render/base64_de.cpp --- a/TaskManager/Test/simple_render/base64_de.cpp Sat Feb 16 20:05:35 2008 +0900 +++ b/TaskManager/Test/simple_render/base64_de.cpp Sat Feb 16 20:19:31 2008 +0900 @@ -1,4 +1,5 @@ -#include +#include +//#include #include using namespace std; diff -r f50c74835a9b -r 6bc72fde6615 TaskManager/Test/simple_render/task/create_sgp.cpp --- a/TaskManager/Test/simple_render/task/create_sgp.cpp Sat Feb 16 20:05:35 2008 +0900 +++ b/TaskManager/Test/simple_render/task/create_sgp.cpp Sat Feb 16 20:19:31 2008 +0900 @@ -1,4 +1,4 @@ -#include +//#include #include "scene_graph_pack.h" #include "polygon.h" using namespace std; diff -r f50c74835a9b -r 6bc72fde6615 include/TaskManager/CellTaskManagerImpl.h --- a/include/TaskManager/CellTaskManagerImpl.h Sat Feb 16 20:05:35 2008 +0900 +++ b/include/TaskManager/CellTaskManagerImpl.h Sat Feb 16 20:19:31 2008 +0900 @@ -1,6 +1,9 @@ #ifndef INCLUDED_CELL_TASK_MANAGER_IMPL #define INCLUDED_CELL_TASK_MANAGER_IMPL +#include +#include + #ifndef INCLUDED_TASK_MANAGER_IMPL # include "TaskManagerImpl.h" #endif