Skip to content

Commit

Permalink
Change the default to threading (#1779)
Browse files Browse the repository at this point in the history
Co-authored-by: Eric Hennenfent <eric.hennenfent@trailofbits.com>
  • Loading branch information
feliam and Eric Hennenfent committed Aug 5, 2020
1 parent 547a59c commit 2347b21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion manticore/core/manticore.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def to_class(self):
)
consts.add("procs", default=10, description="Number of parallel processes to spawn")

proc_type = MProcessingType.multiprocessing
proc_type = MProcessingType.threading
if sys.platform != "linux":
logger.warning("Manticore is only supported on Linux. Proceed at your own risk!")
proc_type = MProcessingType.threading
Expand Down

0 comments on commit 2347b21

Please sign in to comment.