From owner-svn-src-head@FreeBSD.ORG Sat Sep 25 09:30:29 2010 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB13D1065672; Sat, 25 Sep 2010 09:30:29 +0000 (UTC) (envelope-from swell.k@gmail.com) Received: from mail-iw0-f182.google.com (mail-iw0-f182.google.com [209.85.214.182]) by mx1.freebsd.org (Postfix) with ESMTP id 713E98FC1D; Sat, 25 Sep 2010 09:30:29 +0000 (UTC) Received: by iwn34 with SMTP id 34so3884501iwn.13 for ; Sat, 25 Sep 2010 02:30:21 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:from:to:cc:subject:references :date:in-reply-to:message-id:user-agent:mime-version:content-type; bh=BZMwMTj3CJPspqPqTAJIWxMOB9VzfIC/zLNPetXIUh4=; b=Qgl5jbmU/IBPEG0rN2KtTsJ59JB7aE4KdoOxaB1ZLnscKCoDJpFDOw2oW1jqHBxXGO VIHCaCw79tm6SiMMbBkYSauNbA14P3n8SHD35ysqj7mrJYRue69oJGtHNF+DaqHvSyvw WptzoJNZf8hcyVAhx/8xcQBH66j+XCLmKgjHM= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=from:to:cc:subject:references:date:in-reply-to:message-id :user-agent:mime-version:content-type; b=a/N6d/ElSZTat0HIIDGe9sVkEmpvQtYzz6ULKcLW1ZUBV4yQlQ2TRfv17aNsPTduR1 pH00HcqrGVavhXAccQzGD31kBVw4srAGEr/rAy7GidLKR4KLR+rj6iicLp8HGIPu8nLh 0hhgNZyxFBUfsZlqyXAiK8VZdXzi3q9wPKjOc= Received: by 10.231.173.9 with SMTP id n9mr5264809ibz.146.1285407021480; Sat, 25 Sep 2010 02:30:21 -0700 (PDT) Received: from localhost (tor-exit-proxy5-readme.formlessnetworking.net [208.53.142.41]) by mx.google.com with ESMTPS id g31sm3431581ibh.4.2010.09.25.02.30.15 (version=SSLv3 cipher=RC4-MD5); Sat, 25 Sep 2010 02:30:20 -0700 (PDT) From: Anonymous To: David Xu References: <201009250836.o8P8akbl055205__9540.25641917742$1285403822$gmane$org@svn.freebsd.org> Date: Sat, 25 Sep 2010 13:23:41 +0400 In-Reply-To: <201009250836.o8P8akbl055205__9540.25641917742$1285403822$gmane$org@svn.freebsd.org> (David Xu's message of "Sat, 25 Sep 2010 08:36:46 +0000 (UTC)") Message-ID: <864odemb1e.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/24.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org Subject: Re: svn commit: r213161 - head/lib/libthr/thread X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 25 Sep 2010 09:30:29 -0000 David Xu writes: > Author: davidxu > Date: Sat Sep 25 08:36:46 2010 > New Revision: 213161 > URL: http://svn.freebsd.org/changeset/base/213161 > > Log: > Add missing field. > > Modified: > head/lib/libthr/thread/thr_private.h > > Modified: head/lib/libthr/thread/thr_private.h > ============================================================================== > --- head/lib/libthr/thread/thr_private.h Sat Sep 25 08:19:34 2010 (r213160) > +++ head/lib/libthr/thread/thr_private.h Sat Sep 25 08:36:46 2010 (r213161) > @@ -452,6 +452,7 @@ struct pthread { > #ifdef _PTHREAD_FORCED_UNWIND > struct _Unwind_Exception ex; > void *unwind_stackend; > + int unwind_disabled; > #endif > > /* What about NO_THREAD_UNWIND_STACK in src.conf? cc -O2 -pipe -DPTHREAD_KERNEL -I/usr/src/lib/libthr/../libc/include -I/usr/src/lib/libthr/thread -I/usr/src/lib/libthr/../../include -I/usr/src/lib/libthr/arch/amd64/include -I/usr/src/lib/libthr/sys -I/usr/src/lib/libthr/../../libexec/rtld-elf -I/usr/src/lib/libthr/../../libexec/rtld-elf/amd64 -I/usr/src/lib/libthr/../libthread_db -Winline -D_PTHREADS_INVARIANTS -DSYSCALL_COMPAT -ggdb -std=gnu99 -Wsystem-headers -Wall -Wno-format-y2k -W -Wno-unused-parameter -Wstrict-prototypes -Wmissing-prototypes -Wpointer-arith -Wno-uninitialized -Wno-pointer-sign -c /usr/src/lib/libthr/thread/thr_clean.c /usr/src/lib/libthr/thread/thr_clean.c: In function '_pthread_cleanup_push': /usr/src/lib/libthr/thread/thr_clean.c:84: error: 'struct pthread' has no member named 'unwind_disabled' *** Error code 1