From owner-freebsd-current@FreeBSD.ORG Mon Apr 10 16:19:50 2006 Return-Path: X-Original-To: freebsd-current@freebsd.org 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 9A87B16A403; Mon, 10 Apr 2006 16:19:50 +0000 (UTC) (envelope-from csaba@beastie.creo.hu) Received: from beastie.creo.hu (www.creo.hu [217.113.62.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id F3C5A43D45; Mon, 10 Apr 2006 16:19:49 +0000 (GMT) (envelope-from csaba@beastie.creo.hu) Received: from beastie.creo.hu (localhost [127.0.0.1]) by beastie.creo.hu (8.13.4/8.13.4) with ESMTP id k3AGJOg9061435 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Mon, 10 Apr 2006 18:19:24 +0200 (CEST) (envelope-from csaba@beastie.creo.hu) Received: (from csaba@localhost) by beastie.creo.hu (8.13.4/8.13.4/Submit) id k3AGJNL5061434; Mon, 10 Apr 2006 18:19:23 +0200 (CEST) (envelope-from csaba) Date: Mon, 10 Apr 2006 18:19:23 +0200 From: Csaba Henk To: Daniel Eischen Message-ID: <20060410161923.GE1323@beastie.creo.hu> References: <20060407140809.GZ1323@beastie.creo.hu> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.9i Cc: freebsd-current@freebsd.org Subject: Re: switching threading libraries X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 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: Mon, 10 Apr 2006 16:19:50 -0000 On Fri, Apr 07, 2006 at 05:28:41PM -0400, Daniel Eischen wrote: > Does this work for you: > > http://people.freebsd.org/~deischen/symver/libc_r.symver.diffs > > ? Not really: %cat phello.c #include #include #define NUM_THREADS 5 void *PrintHello(void *threadid) { printf("\n%d: Hello World!\n", threadid); pthread_exit(NULL); } int main (int argc, char *argv[]) { pthread_t threads[NUM_THREADS]; int rc, t; for(t=0; t