Date: Tue, 28 Sep 2004 18:22:28 +0700 From: Alexey Dokuchaev <danfe@nsu.ru> To: current@freebsd.org Subject: Threads-related(?) application hangs with recent -CURRENT Message-ID: <20040928112228.GA82029@regency.nsu.ru>
next in thread | raw e-mail | index | archive | help
Hi there,
After upgrading from August 10's -CURRENT to yesterday's, I've noticed
that Mozilla, Psi, and other apps stopped working, that is, after
process is spawned, it shortly stops doing anything, and is unkillable.
Editing /etc/libmap.conf to use libc_r instead helps.
After trying to upgrade Python, ./configure hangs likewise, on this mere
conftest.c program:
#include <pthread.h>
void* routine(void* p){return NULL;}
int main(){
pthread_t p;
if(pthread_create(&p,NULL,routine,NULL)!=0)
return 1;
(void)pthread_detach(p);
return 0;
}
Was there something committed to pthread code that can cause this
misbehavior? What information can I provide to possibly help
investigating this issue?
Thanks!
./danfe
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?20040928112228.GA82029>
