From owner-svn-src-all@FreeBSD.ORG Tue Jun 9 12:32:10 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 ADFB71065670; Tue, 9 Jun 2009 12:32:10 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 9348C8FC1F; Tue, 9 Jun 2009 12:32:10 +0000 (UTC) (envelope-from des@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id n59CWAf3071177; Tue, 9 Jun 2009 12:32:10 GMT (envelope-from des@svn.freebsd.org) Received: (from des@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n59CWA7J071175; Tue, 9 Jun 2009 12:32:10 GMT (envelope-from des@svn.freebsd.org) Message-Id: <200906091232.n59CWA7J071175@svn.freebsd.org> From: Dag-Erling Smorgrav Date: Tue, 9 Jun 2009 12:32:10 +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: r193826 - head/lib/libthread_db 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: Tue, 09 Jun 2009 12:32:14 -0000 Author: des Date: Tue Jun 9 12:32:10 2009 New Revision: 193826 URL: http://svn.freebsd.org/changeset/base/193826 Log: Revert r181651, which changed the ABI, and use a temp variable instead. Suggested by: attilio Modified: head/lib/libthread_db/libthr_db.c head/lib/libthread_db/thread_db.h Modified: head/lib/libthread_db/libthr_db.c ============================================================================== --- head/lib/libthread_db/libthr_db.c Tue Jun 9 11:39:23 2009 (r193825) +++ head/lib/libthread_db/libthr_db.c Tue Jun 9 12:32:10 2009 (r193826) @@ -457,6 +457,7 @@ pt_thr_get_info(const td_thrhandle_t *th { const td_thragent_t *ta = th->th_ta; struct ptrace_lwpinfo linfo; + int traceme; int state; int ret; @@ -470,7 +471,8 @@ pt_thr_get_info(const td_thrhandle_t *th if (ret != 0) return (TD_ERR); ret = thr_pread_int(ta, th->th_thread + ta->thread_off_report_events, - &info->ti_traceme); + &traceme); + info->ti_traceme = traceme; if (ret != 0) return (TD_ERR); ret = ps_pread(ta->ph, th->th_thread + ta->thread_off_event_mask, Modified: head/lib/libthread_db/thread_db.h ============================================================================== --- head/lib/libthread_db/thread_db.h Tue Jun 9 11:39:23 2009 (r193825) +++ head/lib/libthread_db/thread_db.h Tue Jun 9 12:32:10 2009 (r193826) @@ -184,7 +184,7 @@ typedef struct { int ti_pri; lwpid_t ti_lid; char ti_db_suspended; - int ti_traceme; + char ti_traceme; sigset_t ti_sigmask; sigset_t ti_pending; psaddr_t ti_tls;