From: Frederic Suter Date: Wed, 3 Apr 2019 10:11:04 +0000 (+0200) Subject: look for ActorImpl at its new location X-Git-Tag: v3.22.1~10 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/c38143adc86564307b6ba1b1861ce622116b1bad?ds=sidebyside look for ActorImpl at its new location --- diff --git a/src/simix/simcalls.py b/src/simix/simcalls.py index c25d5192f2..99d27d869c 100755 --- a/src/simix/simcalls.py +++ b/src/simix/simcalls.py @@ -54,7 +54,7 @@ class Simcall(object): # smx_host_t h) if self.simcalls_pre is None: self.simcalls_pre = set() - for fn in glob.glob('smx_*') + glob.glob('ActorImpl*') + \ + for fn in glob.glob('smx_*') + glob.glob('../kernel/actor/ActorImpl*') + \ glob.glob('../mc/*cpp') + glob.glob('../kernel/activity/*cpp'): f = open(fn) self.simcalls_pre |= set(re.findall(r'simcall_HANDLER_(.*?)\(', f.read()))