- 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:
|
# Please keep this in sorted order:
|
||||||
libpyloader_la_SOURCES = \
|
libpyloader_la_SOURCES = \
|
||||||
src/plugin.cc \
|
src/plugin.cc \
|
||||||
src/cpu_python_policy.cc \
|
src/python_cpu_policy.cc \
|
||||||
src/cpu_python_policy_manager.cc
|
src/python_cpu_policy_manager.cc
|
||||||
|
|
||||||
noinst_HEADERS += \
|
noinst_HEADERS += \
|
||||||
src/cpu_python_policy.hh \
|
src/python_cpu_policy.hh \
|
||||||
src/cpu_python_policy_manager.hh
|
src/python_cpu_policy_manager.hh
|
||||||
|
|
||||||
share_PYTHON = \
|
share_PYTHON = \
|
||||||
src/Abstract.py \
|
src/Abstract.py \
|
||||||
|
@ -181,8 +181,8 @@ src_testsuite_test_pyloader_LDFLAGS = \
|
||||||
$(PYTHON_EXTRA_LDFLAGS)
|
$(PYTHON_EXTRA_LDFLAGS)
|
||||||
src_testsuite_test_pyloader_SOURCES = \
|
src_testsuite_test_pyloader_SOURCES = \
|
||||||
src/testsuite/test-python_loader.cc \
|
src/testsuite/test-python_loader.cc \
|
||||||
src/cpu_python_policy.cc \
|
src/python_cpu_policy.cc \
|
||||||
src/cpu_python_policy_manager.cc
|
src/python_cpu_policy_manager.cc
|
||||||
|
|
||||||
noinst_PYTHON += src/testsuite/python_loader_configure.py \
|
noinst_PYTHON += src/testsuite/python_loader_configure.py \
|
||||||
src/testsuite/python_loader_sort_queue.py \
|
src/testsuite/python_loader_sort_queue.py \
|
||||||
|
|
|
@ -21,7 +21,7 @@
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
#include "plugin.hh"
|
#include "plugin.hh"
|
||||||
#include "cpu_python_policy_manager.hh"
|
#include "python_cpu_policy_manager.hh"
|
||||||
|
|
||||||
using namespace sgpem;
|
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
|
// of Padova, dept. of Pure and Applied
|
||||||
// Mathematics
|
// Mathematics
|
||||||
//
|
//
|
||||||
|
@ -18,7 +18,7 @@
|
||||||
// along with SGPEMv2; if not, write to the Free Software
|
// along with SGPEMv2; if not, write to the Free Software
|
||||||
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
// 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 <limits>
|
||||||
#include <unistd.h>
|
#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
|
// of Padova, dept. of Pure and Applied
|
||||||
// Mathematics
|
// Mathematics
|
||||||
//
|
//
|
||||||
|
@ -18,8 +18,8 @@
|
||||||
// along with SGPEMv2; if not, write to the Free Software
|
// along with SGPEMv2; if not, write to the Free Software
|
||||||
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
#ifndef CPU_PYTHON_POLICY_HH
|
#ifndef PYTHON_CPU_POLICY_HH
|
||||||
#define CPU_PYTHON_POLICY_HH 1
|
#define PYTHON_CPU_POLICY_HH 1
|
||||||
|
|
||||||
#include "config.h"
|
#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
|
// of Padova, dept. of Pure and Applied
|
||||||
// Mathematics
|
// Mathematics
|
||||||
//
|
//
|
||||||
|
@ -18,7 +18,7 @@
|
||||||
// along with SGPEMv2; if not, write to the Free Software
|
// along with SGPEMv2; if not, write to the Free Software
|
||||||
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
// 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 "global_preferences.hh"
|
||||||
#include "cpu_policies_gatekeeper.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
|
// of Padova, dept. of Pure and Applied
|
||||||
// Mathematics
|
// Mathematics
|
||||||
//
|
//
|
||||||
|
@ -18,15 +18,15 @@
|
||||||
// along with SGPEMv2; if not, write to the Free Software
|
// along with SGPEMv2; if not, write to the Free Software
|
||||||
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
// Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
#ifndef CPU_PYTHON_POLICY_MANAGER_HH
|
#ifndef PYTHON_CPU_POLICY_MANAGER_HH
|
||||||
#define CPU_PYTHON_POLICY_MANAGER_HH 1
|
#define PYTHON_CPU_POLICY_MANAGER_HH 1
|
||||||
|
|
||||||
#include "config.h"
|
#include "config.h"
|
||||||
|
|
||||||
#include <Python.h>
|
#include <Python.h>
|
||||||
|
|
||||||
#include "cpu_policy_manager.hh"
|
#include "cpu_policy_manager.hh"
|
||||||
#include "cpu_python_policy.hh"
|
#include "python_cpu_policy.hh"
|
||||||
|
|
||||||
namespace sgpem
|
namespace sgpem
|
||||||
{
|
{
|
|
@ -22,8 +22,8 @@
|
||||||
* class and its closely related cousins. More documentation to be written
|
* class and its closely related cousins. More documentation to be written
|
||||||
* here, thanks very much. */
|
* here, thanks very much. */
|
||||||
|
|
||||||
#include "../cpu_python_policy_manager.hh"
|
#include "../python_cpu_policy_manager.hh"
|
||||||
#include "../cpu_python_policy.hh"
|
#include "../python_cpu_policy.hh"
|
||||||
|
|
||||||
#include "simulation.hh"
|
#include "simulation.hh"
|
||||||
#include "global_preferences.hh"
|
#include "global_preferences.hh"
|
||||||
|
|
Loading…
Reference in New Issue