From owner-svn-src-all@FreeBSD.ORG Wed Nov 18 03:58:26 2009 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 95C6610656C4; Wed, 18 Nov 2009 03:58:26 +0000 (UTC) (envelope-from imp@bsdimp.com) Received: from harmony.bsdimp.com (bsdimp.com [199.45.160.85]) by mx1.freebsd.org (Postfix) with ESMTP id 567098FC15; Wed, 18 Nov 2009 03:58:26 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by harmony.bsdimp.com (8.14.3/8.14.1) with ESMTP id nAI3tb1o049261; Tue, 17 Nov 2009 20:55:37 -0700 (MST) (envelope-from imp@bsdimp.com) Date: Tue, 17 Nov 2009 20:56:00 -0700 (MST) Message-Id: <20091117.205600.-1447187016.imp@bsdimp.com> To: davidxu@FreeBSD.org From: "M. Warner Losh" In-Reply-To: <200911180135.nAI1ZaIe051549@svn.freebsd.org> References: <200911180135.nAI1ZaIe051549@svn.freebsd.org> X-Mailer: Mew version 5.2 on Emacs 21.3 / Mule 5.0 (SAKAKI) Mime-Version: 1.0 Content-Type: Text/Plain; charset=us-ascii Content-Transfer-Encoding: 7bit Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r199465 - head/lib/librt X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 18 Nov 2009 03:58:26 -0000 In message: <200911180135.nAI1ZaIe051549@svn.freebsd.org> David Xu writes: : Author: davidxu : Date: Wed Nov 18 01:35:36 2009 : New Revision: 199465 : URL: http://svn.freebsd.org/changeset/base/199465 : : Log: : Fix compiler warnings. : : Modified: : head/lib/librt/sigev_thread.c : : Modified: head/lib/librt/sigev_thread.c : ============================================================================== : --- head/lib/librt/sigev_thread.c Wed Nov 18 01:13:15 2009 (r199464) : +++ head/lib/librt/sigev_thread.c Wed Nov 18 01:35:36 2009 (r199465) : @@ -439,9 +439,9 @@ worker_routine(void *arg) : { : struct sigev_node *sn = arg; : : - _pthread_cleanup_push(worker_cleanup, sn); : + pthread_cleanup_push(worker_cleanup, sn); : sn->sn_dispatch(sn); : - _pthread_cleanup_pop(1); : + pthread_cleanup_pop(1); : : return (0); : } Is this what is causing the tinerbox failure on MIPS? Warner