mirror of
https://gitlab.com/manzerbredes/esds.git
synced 2025-04-05 17:46:29 +02:00
Set threads as daemons
This commit is contained in:
parent
0d5c89c595
commit
b2dfe62758
1 changed files with 2 additions and 1 deletions
|
@ -85,7 +85,8 @@ class Simulator:
|
|||
exit(1)
|
||||
node=Node(src, interfaces, grp)
|
||||
self.nodes.append(node)
|
||||
thread=threading.Thread(target=node.run,args=[args]) # There must be "daemon=True" as a parameter, but we removed it to be compatible with older version of python
|
||||
thread=threading.Thread(target=node.run,args=[args])
|
||||
thread.setDaemon(True) # May not work on old version of pythons but allow to kill threads when main thread ends (see Node.abort())
|
||||
thread.start()
|
||||
|
||||
def log(self,msg,node=None):
|
||||
|
|
Loading…
Add table
Reference in a new issue