Pham Cong Dinh added the comment:
Hi Vinay,
Your example use a child process to receive log messages. I am implementing a
thread-based solution. Do you think that multiprocessing.Queue() has major
issues with threads or this problem happens only on Mac OSX implementations?
I still reproduce
Pham Cong Dinh added the comment:
I just simplified my script into a smaller one that can be easier to understand
and find out what happens
https://gist.github.com/819979
Thanks
--
___
Python tracker
<http://bugs.python.org/issue11
Pham Cong Dinh added the comment:
Sorry, just ignore my latest comment. It is for another issue
--
___
Python tracker
<http://bugs.python.org/issue11158>
___
___
Pham Cong Dinh added the comment:
I just simplified my script into a smaller one that can be easier to understand
and find out what happens
https://gist.github.com/819979
Thanks
--
resolution: invalid ->
status: pending -> open
___
Changes by Pham Cong Dinh :
--
title: Parent process did not quit after sys.exit() -> Python VM deadlock
___
Python tracker
<http://bugs.python.org/issu
New submission from Pham Cong Dinh :
Hi,
I was implementing a multiple process compatible logging which child processes
are expected to send all messages to the parent process via a queue and then
the parent process serializes and flushes them into a log file. The idea is
built around
New submission from Pham Cong Dinh :
Quite often, I got the following message printed out the console while I run my
Python script
pthread_cond_signal: Undefined error: 0
Or it crashed
https://gist.github.com/799841
Tested with Python 2.6.1 and 2.6.6 (Mac)
What I am trying to do is to set