- Use strictier naming scheme for pyloader
git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@812 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
parent
43b817aaed
commit
1961283f85
|
@ -92,12 +92,12 @@ libpyloader_la_LDFLAGS = \
|
|||
# Please keep this in sorted order:
|
||||
libpyloader_la_SOURCES = \
|
||||
src/plugin.cc \
|
||||
src/cpu_python_policy.cc \
|
||||
src/cpu_python_policy_manager.cc
|
||||
src/python_cpu_policy.cc \
|
||||
src/python_cpu_policy_manager.cc
|
||||
|
||||
noinst_HEADERS += \
|
||||
src/cpu_python_policy.hh \
|
||||
src/cpu_python_policy_manager.hh
|
||||
src/python_cpu_policy.hh \
|
||||
src/python_cpu_policy_manager.hh
|
||||
|
||||
share_PYTHON = \
|
||||
src/Abstract.py \
|
||||
|
@ -181,8 +181,8 @@ src_testsuite_test_pyloader_LDFLAGS = \
|
|||
$(PYTHON_EXTRA_LDFLAGS)
|
||||
src_testsuite_test_pyloader_SOURCES = \
|
||||
src/testsuite/test-python_loader.cc \
|
||||
src/cpu_python_policy.cc \
|
||||
src/cpu_python_policy_manager.cc
|
||||
src/python_cpu_policy.cc \
|
||||
src/python_cpu_policy_manager.cc
|
||||
|
||||
noinst_PYTHON += src/testsuite/python_loader_configure.py \
|
||||
src/testsuite/python_loader_sort_queue.py \
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
#include "config.h"
|
||||
|
||||
#include "plugin.hh"
|
||||
#include "cpu_python_policy_manager.hh"
|
||||
#include "python_cpu_policy_manager.hh"
|
||||
|
||||
using namespace sgpem;
|
||||
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
// src/backend/pyloader/python_policy.cc - Copyright 2005, 2006, University
|
||||
// src/python_cpu_policy.cc - Copyright 2005, 2006, University
|
||||
// of Padova, dept. of Pure and Applied
|
||||
// Mathematics
|
||||
//
|
||||
|
@ -18,7 +18,7 @@
|
|||
// along with SGPEMv2; if not, write to the Free Software
|
||||
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
#include "cpu_python_policy.hh"
|
||||
#include "python_cpu_policy.hh"
|
||||
|
||||
#include <limits>
|
||||
#include <unistd.h>
|
|
@ -1,4 +1,4 @@
|
|||
// src/cpu_python_policy.hh - Copyright 2005, 2006, University
|
||||
// src/python_cpu_policy.hh - Copyright 2005, 2006, University
|
||||
// of Padova, dept. of Pure and Applied
|
||||
// Mathematics
|
||||
//
|
||||
|
@ -18,8 +18,8 @@
|
|||
// along with SGPEMv2; if not, write to the Free Software
|
||||
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
#ifndef CPU_PYTHON_POLICY_HH
|
||||
#define CPU_PYTHON_POLICY_HH 1
|
||||
#ifndef PYTHON_CPU_POLICY_HH
|
||||
#define PYTHON_CPU_POLICY_HH 1
|
||||
|
||||
#include "config.h"
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
// src/cpu_python_policy_manager.cc - Copyright 2005, 2006, University
|
||||
// src/python_cpu_policy_manager.cc - Copyright 2005, 2006, University
|
||||
// of Padova, dept. of Pure and Applied
|
||||
// Mathematics
|
||||
//
|
||||
|
@ -18,7 +18,7 @@
|
|||
// along with SGPEMv2; if not, write to the Free Software
|
||||
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
#include "cpu_python_policy_manager.hh"
|
||||
#include "python_cpu_policy_manager.hh"
|
||||
#include "global_preferences.hh"
|
||||
#include "cpu_policies_gatekeeper.hh"
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
// src/cpu_python_policy_manager.hh - Copyright 2005, 2006, University
|
||||
// src/python_cpu_policy_manager.hh - Copyright 2005, 2006, University
|
||||
// of Padova, dept. of Pure and Applied
|
||||
// Mathematics
|
||||
//
|
||||
|
@ -18,15 +18,15 @@
|
|||
// along with SGPEMv2; if not, write to the Free Software
|
||||
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
#ifndef CPU_PYTHON_POLICY_MANAGER_HH
|
||||
#define CPU_PYTHON_POLICY_MANAGER_HH 1
|
||||
#ifndef PYTHON_CPU_POLICY_MANAGER_HH
|
||||
#define PYTHON_CPU_POLICY_MANAGER_HH 1
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <Python.h>
|
||||
|
||||
#include "cpu_policy_manager.hh"
|
||||
#include "cpu_python_policy.hh"
|
||||
#include "python_cpu_policy.hh"
|
||||
|
||||
namespace sgpem
|
||||
{
|
|
@ -22,8 +22,8 @@
|
|||
* class and its closely related cousins. More documentation to be written
|
||||
* here, thanks very much. */
|
||||
|
||||
#include "../cpu_python_policy_manager.hh"
|
||||
#include "../cpu_python_policy.hh"
|
||||
#include "../python_cpu_policy_manager.hh"
|
||||
#include "../python_cpu_policy.hh"
|
||||
|
||||
#include "simulation.hh"
|
||||
#include "global_preferences.hh"
|
||||
|
|
Loading…
Reference in New Issue