Andrew Robert wrote:
> In this situation, it is possible for a process(my python program) to
> monopolize and block other processes from being triggered.
>
> Ideally, this needs to be avoided through the use of a fork.
Another option would be to write the incoming messages to your own queue
(an
Andrew Robert wrote:
> Gary Herron wrote:
>
>>Andrew Robert wrote:
>>
>
>
>
>>The windows CreateProcess call has many of the same semantics as the
>>Unix fork, i.e., a new process is created sharing all the resources of
>>the original process. The "subprocess" modules uses CreateProcess, but
>
Gary Herron wrote:
> Andrew Robert wrote:
>
>
> The windows CreateProcess call has many of the same semantics as the
> Unix fork, i.e., a new process is created sharing all the resources of
> the original process. The "subprocess" modules uses CreateProcess, but
> if that does not give you suf