You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The "freeze_support()" line can be omitted if the program
is not going to be frozen to produce an executable.
exec(code, run_globals)
File "PinCTF\pinCTF.py", line 485, in <module>
main()
File "PinCTF\pinCTF.py", line 99, in main
multi_core=int(args.threadCount))
File "PinCTF\pinCTF.py", line 229, in pinLength
m_pool = Pool(multi_core)
File "F:\Python3\lib\multiprocessing\context.py", line 119, in Pool
context=self.get_context())
File "F:\Python3\lib\multiprocessing\pool.py", line 176, in __init__
self._repopulate_pool()
File "F:\Python3\lib\multiprocessing\pool.py", line 241, in _repopulate_pool
w.start()
File "F:\Python3\lib\multiprocessing\process.py", line 112, in start
self._popen = self._Popen(self)
File "F:\Python3\lib\multiprocessing\context.py", line 322, in _Popen
return Popen(process_obj)
File "F:\Python3\lib\multiprocessing\popen_spawn_win32.py", line 46, in __init__
prep_data = spawn.get_preparation_data(process_obj._name)
File "F:\Python3\lib\multiprocessing\spawn.py", line 143, in get_preparation_data
_check_not_importing_main()
File "F:\Python3\lib\multiprocessing\spawn.py", line 136, in _check_not_importing_main
is not going to be frozen to produce an executable.''')
RuntimeError:
An attempt has been made to start a new process before the
current process has finished its bootstrapping phase.
This probably means that you are not using fork to start your
child processes and you have forgotten to use the proper idiom
in the main module:
seems the thread pool doesn't work well.
The text was updated successfully, but these errors were encountered:
As the inscount.so is hard coding in the readCount function, changing it to inscount.dll when identify the Windows environment seems a possible way to port to Windows.
pcy190
changed the title
Corrupt in Windows
[RFC ] Support Windows
May 1, 2020
I've tried to run the example of pinCTF in Windows10 x64
It corrupts with
seems the thread pool doesn't work well.
The text was updated successfully, but these errors were encountered: