From owner-svn-src-head@FreeBSD.ORG Thu Sep 30 03:16:35 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 74543106564A; Thu, 30 Sep 2010 03:16:35 +0000 (UTC) (envelope-from davidxu@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 63ED98FC08; Thu, 30 Sep 2010 03:16:35 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o8U3GZrC051027; Thu, 30 Sep 2010 03:16:35 GMT (envelope-from davidxu@svn.freebsd.org) Received: (from davidxu@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o8U3GZkm051025; Thu, 30 Sep 2010 03:16:35 GMT (envelope-from davidxu@svn.freebsd.org) Message-Id: <201009300316.o8U3GZkm051025@svn.freebsd.org> From: David Xu Date: Thu, 30 Sep 2010 03:16:35 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r213290 - head/include 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: Thu, 30 Sep 2010 03:16:35 -0000 Author: davidxu Date: Thu Sep 30 03:16:35 2010 New Revision: 213290 URL: http://svn.freebsd.org/changeset/base/213290 Log: Also the stop function should accept 64-bit exception class. Modified: head/include/unwind.h Modified: head/include/unwind.h ============================================================================== --- head/include/unwind.h Thu Sep 30 03:09:35 2010 (r213289) +++ head/include/unwind.h Thu Sep 30 03:16:35 2010 (r213290) @@ -66,7 +66,7 @@ typedef void (*_Unwind_Exception_Cleanup struct _Unwind_Exception *); typedef _Unwind_Reason_Code (*_Unwind_Stop_Fn) (int, _Unwind_Action, - unsigned long, + __int64_t, struct _Unwind_Exception *, struct _Unwind_Context *, void *);