From owner-freebsd-current@FreeBSD.ORG Tue Sep 28 11:21:56 2004 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 78F6E16A4CE for ; Tue, 28 Sep 2004 11:21:56 +0000 (GMT) Received: from mx.nsu.ru (mx.nsu.ru [212.192.164.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8636243D4C for ; Tue, 28 Sep 2004 11:21:51 +0000 (GMT) (envelope-from danfe@regency.nsu.ru) Received: from regency.nsu.ru ([193.124.210.26]) by mx.nsu.ru with esmtp (Exim 4.34) id 1CCGMd-0005dv-F5 for current@freebsd.org; Tue, 28 Sep 2004 18:41:47 +0700 Received: from regency.nsu.ru (localhost [127.0.0.1]) by regency.nsu.ru (8.12.10/8.12.10) with ESMTP id i8SBMSoI088433 for ; Tue, 28 Sep 2004 18:22:28 +0700 (NOVST) (envelope-from danfe@regency.nsu.ru) Received: (from danfe@localhost) by regency.nsu.ru (8.12.10/8.12.10/Submit) id i8SBMSEo088391 for current@freebsd.org; Tue, 28 Sep 2004 18:22:28 +0700 (NOVST) (envelope-from danfe) Date: Tue, 28 Sep 2004 18:22:28 +0700 From: Alexey Dokuchaev To: current@freebsd.org Message-ID: <20040928112228.GA82029@regency.nsu.ru> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.1i X-Mailman-Approved-At: Tue, 28 Sep 2004 14:39:14 +0000 Subject: Threads-related(?) application hangs with recent -CURRENT X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 28 Sep 2004 11:21:56 -0000 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 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