Python Forum
Stuck on multiproccessing
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Stuck on multiproccessing
#2
I noticed you are passing an already called method as the target
proc = mp.Process(name="Clear + No Filename + Print Output", target=self.clrFileYesFnNoPrintoutput(host))
the process itself should do the calling
proc = mp.Process(name="Clear + No Filename + Print Output", target=self.clrFileYesFnNoPrintoutput, , args=(host,))
Reply


Messages In This Thread
Stuck on multiproccessing - by Gilush - Jun-02-2020, 06:21 AM
RE: Stuck on multiproccessing - by Yoriz - Jun-02-2020, 12:37 PM
RE: Stuck on multiproccessing - by Gilush - Jun-02-2020, 12:54 PM

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020