It would help to know which version of Python when giving examples...
I recollect that so-called mutex operation wasn't actually thread safe when
using Python 2.5, but perhaps that was wrong, or subsequent versions have
fixed that?
--
http://mail.python.org/mailman/listinfo/python-list
On Tue, 20 Jan 2009 11:08:46 -0500, D'Arcy J.M. Cain wrote:
> On Tue, 20 Jan 2009 10:57:52 -0500
> RGK wrote:
>> I have a thread that is off reading things some of which will get
>> written into a file while another UI thread manages input from a user.
>>
>> The reader-thread and the UI-thread
Thanks for the suggestions - sounds like a couple good options, I
apprecieate it.
Ross.
MRAB wrote:
RGK wrote:
I have a thread that is off reading things some of which will get
written into a file while another UI thread manages input from a user.
The reader-thread and the UI-thread will bo
RGK wrote:
I have a thread that is off reading things some of which will get
written into a file while another UI thread manages input from a user.
The reader-thread and the UI-thread will both want to write stuff to the
same output file. What first comes to mind is that there may be write
co
On Tue, 20 Jan 2009 10:57:52 -0500
RGK wrote:
> I have a thread that is off reading things some of which will get
> written into a file while another UI thread manages input from a user.
>
> The reader-thread and the UI-thread will both want to write stuff to the
> same output file. What first
I have a thread that is off reading things some of which will get
written into a file while another UI thread manages input from a user.
The reader-thread and the UI-thread will both want to write stuff to the
same output file. What first comes to mind is that there may be write
collisions, ie