0

I created multiple processed which in turn are spawning other processes. Thus SPIN model keeps printing "Too many processes (Max 255)". However, it is still giving me the end output. If it cannot handle more than 255 processes how does it still manage to give me the final output?

svick
  • 236,525
  • 50
  • 385
  • 514
sheetal_158
  • 7,391
  • 6
  • 27
  • 44
  • Where is your code? If code has good error handling for process management, you may be able to result. It all depends the code. – Fumu 7 Dec 05 '14 at 06:30

1 Answers1

2

The output 'Too many processes' is just a warning. Spin simply ignores the additional spawns and continues executing the existing processes. Apparently your Spin model does not depend on the 'in turn' spawning.

GoZoner
  • 67,920
  • 20
  • 95
  • 145