From 6950cc64a0a474205b74cfb7d52e0a007ccb6ee2 Mon Sep 17 00:00:00 2001 From: David Hendriks <davidhendriks93@gmail.com> Date: Fri, 21 Feb 2020 17:33:23 +0000 Subject: [PATCH] added some comment --- binarycpython/utils/grid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binarycpython/utils/grid.py b/binarycpython/utils/grid.py index 4e878feb7..4fbfa7cff 100644 --- a/binarycpython/utils/grid.py +++ b/binarycpython/utils/grid.py @@ -812,7 +812,7 @@ class Population(object): # TODO: calculate the chunksize value based on: total starcount and cores used. r = list(p.imap_unordered(evolve_system, yield_system(), chunksize=20)) - # Handle clean termination of the whole multiprocessing + # Handle clean termination of the whole multiprocessing (making sure there are no zombie processes (https://en.wikipedia.org/wiki/Zombie_process)) p.close() p.join() -- GitLab