Re: Crash in PyThread_acquire_lock

2010-07-05 Thread moerchendiser2k3
Thanks Antoine! :) You were right. It was the wrong thread...uhmm... Bye! :) -- http://mail.python.org/mailman/listinfo/python-list

Re: Crash in PyThread_acquire_lock

2010-07-03 Thread Antoine Pitrou
Hello, > 'thelock->locked' is for sure still locked, but I can't identify the > problem. > Its just waiting, but it gets a 'EXC_BAD_ACCESS'. The line of the > crash > in PyThread_acquire_lock is the following one: > > while ( thelock->

Crash in PyThread_acquire_lock

2010-07-02 Thread moerchendiser2k3
y the problem. Its just waiting, but it gets a 'EXC_BAD_ACCESS'. The line of the crash in PyThread_acquire_lock is the following one: while ( thelock->locked ) { status = pthread_cond_wait(&thelock->lock_released, &thelock- >mut); <<<<<<<<<