- I don't remember exactly what I did.
git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@434 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
parent
6446c205ea
commit
5dddd9b488
|
@ -324,17 +324,14 @@ src_testsuite_test_python_loader_CPPFLAGS = \
|
|||
-DMODDIR="\"$(moddir)\"" \
|
||||
$(PYTHON_CPPFLAGS) \
|
||||
$(GLIBMM_CFLAGS) \
|
||||
$(GTKMM_CFLAGS) \
|
||||
$(GTHREAD_CFLAGS)
|
||||
src_testsuite_test_python_loader_LDFLAGS = \
|
||||
src/backend/pyloader/libpyloader.la \
|
||||
$(GTKMM_LIBS) $(GTHREAD_LIBS)
|
||||
src_testsuite_test_python_loader_SOURCES = \
|
||||
src/testsuite/test-python_loader.cc \
|
||||
src/start_gui.cc \
|
||||
src/standard_io.cc \
|
||||
src/text_simulation.cc \
|
||||
src/observer.cc \
|
||||
src/graphical_terminal_io.cc \
|
||||
src/simulation.cc
|
||||
|
||||
|
|
|
@ -19,8 +19,6 @@ class Policy:
|
|||
# For example, it may make the return value of is_preemptive configurable,
|
||||
# or register an integer value for a the time slice duration.
|
||||
#
|
||||
# @warning How do the user accesses get_parameters()?
|
||||
#
|
||||
# Should be implemented with signature:
|
||||
# @code
|
||||
# def configure(self):
|
||||
|
|
|
@ -18,5 +18,4 @@ class fcfs(Policy) :
|
|||
cmpf = lambda a, b: \
|
||||
a.get_schedulable().get_arrival_time() < \
|
||||
b.get_schedulable().get_arrival_time()
|
||||
self.sort(queue,cmpf)
|
||||
|
||||
#self.sort(queue,cmpf)
|
||||
|
|
Loading…
Reference in New Issue