Skip to content
Snippets Groups Projects
Commit f4f5bcd5 authored by jkerdreu's avatar jkerdreu
Browse files

- task name change

git-svn-id: https://redmine.imt-atlantique.fr/svn/xaal/code/Python/branches/0.7@2983 b32b6428-25c9-4566-ad07-03861ab6144f
parent b39a95cc
Branches
No related tags found
No related merge requests found
......@@ -154,7 +154,7 @@ class AsyncEngine(core.EngineMixin):
#####################################################
# Tasks
#####################################################
async def start_task(self):
async def boot_task(self):
self.watchdog_event.clear()
# queue the alive before anything
for dev in self.devices:
......@@ -196,7 +196,7 @@ class AsyncEngine(core.EngineMixin):
logger.warning('Engine already started')
return
self.started_event.set()
self.new_task(self.start_task(),name='Boot')
self.new_task(self.boot_task(),name='Boot')
self.new_task(self.receive_task(),name='RecvQ')
self.new_task(self.send_task(),name='SendQ')
self.new_task(self.timer_task(),name='Timers')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment