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
I found that every time I call Exec::cmd it creates zombie/defunct process that lasts for the lifetime of the program. This can cause problems when spawning many processes.
The workaround was to use Popen instead. It doesn't have the same issue - no defunct processes are created.
The text was updated successfully, but these errors were encountered:
I found that every time I call
Exec::cmd
it creates zombie/defunct process that lasts for the lifetime of the program. This can cause problems when spawning many processes.The workaround was to use
Popen
instead. It doesn't have the same issue - no defunct processes are created.The text was updated successfully, but these errors were encountered: