Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
dream
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
1
Issues
1
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
dream
Commits
17cc1987
Commit
17cc1987
authored
Jul 14, 2014
by
Ioannis Papagiannopoulos
Committed by
Georgios Dagkakis
Sep 01, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
cherry-pick from readWIPseperatelly. correction to preemptReceiver in CoreObject
parent
7fefcbb6
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
18 deletions
+19
-18
dream/simulation/CoreObject.py
dream/simulation/CoreObject.py
+19
-18
No files found.
dream/simulation/CoreObject.py
View file @
17cc1987
...
...
@@ -284,7 +284,6 @@ class CoreObject(object):
#===========================================================================
def
preemptReceiver
(
self
):
activeObjectQueue
=
self
.
Res
.
users
# find a critical order if any
critical
=
False
for
entity
in
activeObjectQueue
:
...
...
@@ -294,6 +293,8 @@ class CoreObject(object):
break
if
critical
:
# pick a receiver
receiver
=
None
if
any
(
object
for
object
in
self
.
next
if
object
.
isPreemptive
and
object
.
checkIfActive
()):
receiver
=
next
(
object
for
object
in
self
.
next
if
object
.
isPreemptive
and
object
.
checkIfActive
())
# if there is any receiver that can be preempted check if it is operated
if
receiver
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment