- Fix all includes, separating header files to be installed
from other headers. Take it while it's hot. - To all those that lock source files: you'll burn in hell. Really. It'll be painful, dreadful and above all *long*. *Eternally* long. And there'll be Freddy Mercury and The Queen playing, *all the time*, day after boring, useless, sorrowful day. The song will be *``Radio Ga-Ga''*, in secula secularum amen. git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@1033 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
parent
6458511399
commit
0f718f2899
156 changed files with 547 additions and 521 deletions
|
@ -19,7 +19,7 @@
|
|||
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
|
||||
#include "history.hh"
|
||||
#include <sgpemv2/history.hh>
|
||||
|
||||
using namespace sgpem;
|
||||
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
|
||||
#include "backend/observed_subject.hh"
|
||||
#include "backend/slice.hh"
|
||||
#include "backend/ready_queue.hh"
|
||||
#include <sgpemv2/ready_queue.hh>
|
||||
#include "templates/smartp.tcc"
|
||||
#include <iostream>
|
||||
|
||||
|
@ -42,7 +42,7 @@
|
|||
|
||||
#include "backend/dynamic_schedulable.hh"
|
||||
|
||||
#include "backend/user_interrupt_exception.hh"
|
||||
#include <sgpemv2/user_interrupt_exception.hh>
|
||||
#include "backend/policy.hh"
|
||||
|
||||
#include "prrpolicy.cc"
|
||||
|
|
|
@ -33,10 +33,10 @@
|
|||
#include <iostream>
|
||||
#include "backend/static_process.hh"
|
||||
#include "backend/observed_subject.hh"
|
||||
#include "backend/ready_queue.hh"
|
||||
#include <sgpemv2/ready_queue.hh>
|
||||
#include "backend/dynamic_schedulable.hh"
|
||||
#include "templates/smartp.tcc"
|
||||
#include "backend/user_interrupt_exception.hh"
|
||||
#include <sgpemv2/user_interrupt_exception.hh>
|
||||
#include "backend/policy.hh"
|
||||
#include "backend/slice.hh"
|
||||
#include "prrpolicy.cc"
|
||||
|
|
|
@ -22,9 +22,9 @@
|
|||
#define PRRPOLICY_HH 1
|
||||
|
||||
#include "backend/policy.hh"
|
||||
#include "backend/user_interrupt_exception.hh"
|
||||
#include "backend/ready_queue.hh"
|
||||
#include "backend/scheduler.hh"
|
||||
#include <sgpemv2/user_interrupt_exception.hh>
|
||||
#include <sgpemv2/ready_queue.hh>
|
||||
#include <sgpemv2/scheduler.hh>
|
||||
#include "glibmm/ustring.h"
|
||||
|
||||
/*
|
||||
|
@ -39,7 +39,7 @@
|
|||
|
||||
#include "backend/dynamic_schedulable.hh"
|
||||
#include "templates/smartp.tcc"
|
||||
#include "backend/user_interrupt_exception.hh"
|
||||
#include <sgpemv2/user_interrupt_exception.hh>
|
||||
|
||||
#include "backend/slice.hh"
|
||||
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
|
||||
#include "config.h"
|
||||
#include "glibmm/ustring.h"
|
||||
#include "backend/global_preferences.hh"
|
||||
#include <sgpemv2/global_preferences.hh>
|
||||
#include <iostream>
|
||||
#include <sstream>
|
||||
|
||||
|
|
|
@ -29,9 +29,9 @@
|
|||
#include <cassert>
|
||||
#include <iostream>
|
||||
|
||||
#include "backend/concrete_environment.hh"
|
||||
#include "backend/concrete_history.hh"
|
||||
#include "backend/history_observer.hh"
|
||||
#include "concrete_environment.hh"
|
||||
#include "concrete_history.hh"
|
||||
#include <sgpemv2/history_observer.hh>
|
||||
|
||||
using namespace sgpem;
|
||||
using namespace std;
|
||||
|
|
|
@ -39,20 +39,20 @@
|
|||
#include <cassert>
|
||||
#include <iostream>
|
||||
|
||||
#include "backend/cpu_policies_gatekeeper.hh"
|
||||
#include "backend/cpu_policy.hh"
|
||||
#include "backend/cpu_policy_manager.hh"
|
||||
#include "backend/resource_policies_gatekeeper.hh"
|
||||
#include "backend/resource_policy.hh"
|
||||
#include "backend/resource_policy_manager.hh"
|
||||
#include <sgpemv2/cpu_policies_gatekeeper.hh>
|
||||
#include <sgpemv2/cpu_policy.hh>
|
||||
#include <sgpemv2/cpu_policy_manager.hh>
|
||||
#include <sgpemv2/resource_policies_gatekeeper.hh>
|
||||
#include <sgpemv2/resource_policy.hh>
|
||||
#include <sgpemv2/resource_policy_manager.hh>
|
||||
|
||||
#include "backend/history_observer.hh"
|
||||
#include "backend/scheduler.hh"
|
||||
#include "backend/simulation.hh"
|
||||
#include "backend/simulation_observer.hh"
|
||||
#include "backend/process.hh"
|
||||
#include "backend/resource.hh"
|
||||
#include "backend/thread.hh"
|
||||
#include <sgpemv2/history_observer.hh>
|
||||
#include <sgpemv2/scheduler.hh>
|
||||
#include <sgpemv2/simulation.hh>
|
||||
#include <sgpemv2/simulation_observer.hh>
|
||||
#include <sgpemv2/process.hh>
|
||||
#include <sgpemv2/resource.hh>
|
||||
#include <sgpemv2/thread.hh>
|
||||
#include "cairo_elements.hh"
|
||||
#include "cairo_widget.hh"
|
||||
#include "holt_container_window.hh"
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
|
||||
#include "config.h"
|
||||
#include "glibmm/ustring.h"
|
||||
#include "backend/key_file.hh"
|
||||
#include <sgpemv2/key_file.hh>
|
||||
#include <iostream>
|
||||
|
||||
|
||||
|
|
|
@ -38,10 +38,10 @@
|
|||
#include "backend/static_process.hh"
|
||||
#include "backend/slice.hh"
|
||||
#include "backend/observed_subject.hh"
|
||||
#include "backend/ready_queue.hh"
|
||||
#include <sgpemv2/ready_queue.hh>
|
||||
#include "backend/dynamic_schedulable.hh"
|
||||
|
||||
#include "smartp.tcc"
|
||||
#include <sgpemv2/templates/smartp.tcc>
|
||||
|
||||
namespace sgpem
|
||||
{
|
||||
|
|
|
@ -38,19 +38,19 @@
|
|||
#include <cassert>
|
||||
#include <iostream>
|
||||
|
||||
#include "backend/cpu_policies_gatekeeper.hh"
|
||||
#include "backend/cpu_policy.hh"
|
||||
#include "backend/cpu_policy_manager.hh"
|
||||
#include "backend/resource_policies_gatekeeper.hh"
|
||||
#include "backend/resource_policy.hh"
|
||||
#include "backend/resource_policy_manager.hh"
|
||||
#include "backend/history_observer.hh"
|
||||
#include "backend/scheduler.hh"
|
||||
#include "backend/simulation.hh"
|
||||
#include "backend/simulation_observer.hh"
|
||||
#include "backend/process.hh"
|
||||
#include "backend/resource.hh"
|
||||
#include "backend/thread.hh"
|
||||
#include <sgpemv2/cpu_policies_gatekeeper.hh>
|
||||
#include <sgpemv2/cpu_policy.hh>
|
||||
#include <sgpemv2/cpu_policy_manager.hh>
|
||||
#include <sgpemv2/resource_policies_gatekeeper.hh>
|
||||
#include <sgpemv2/resource_policy.hh>
|
||||
#include <sgpemv2/resource_policy_manager.hh>
|
||||
#include <sgpemv2/history_observer.hh>
|
||||
#include <sgpemv2/scheduler.hh>
|
||||
#include <sgpemv2/simulation.hh>
|
||||
#include <sgpemv2/simulation_observer.hh>
|
||||
#include <sgpemv2/process.hh>
|
||||
#include <sgpemv2/resource.hh>
|
||||
#include <sgpemv2/thread.hh>
|
||||
#include "cairo_elements.hh"
|
||||
#include "cairo_widget.hh"
|
||||
#include "simulation_widget.hh"
|
||||
|
|
|
@ -33,13 +33,13 @@
|
|||
#include <iostream>
|
||||
#include "backend/static_process.hh"
|
||||
#include "backend/observed_subject.hh"
|
||||
#include "backend/ready_queue.hh"
|
||||
#include <sgpemv2/ready_queue.hh>
|
||||
#include "backend/dynamic_schedulable.hh"
|
||||
|
||||
#include "scheduler.hh"
|
||||
#include "user_interrupt_exception.hh"
|
||||
#include <sgpemv2/scheduler.hh>
|
||||
#include <sgpemv2/user_interrupt_exception.hh>
|
||||
|
||||
#include "smartp.tcc"
|
||||
#include <sgpemv2/templates/smartp.tcc>
|
||||
|
||||
#include <iostream>
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue