From owner-p4-projects@FreeBSD.ORG Sun Jun 13 06:05:08 2004 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id D539D16A4D3; Sun, 13 Jun 2004 06:05:07 +0000 (GMT) Delivered-To: perforce@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9F0C516A4CE for ; Sun, 13 Jun 2004 06:05:07 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9912743D2D for ; Sun, 13 Jun 2004 06:05:07 +0000 (GMT) (envelope-from marcel@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.12.11/8.12.11) with ESMTP id i5D63sq1036649 for ; Sun, 13 Jun 2004 06:03:54 GMT (envelope-from marcel@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.12.11/8.12.11/Submit) id i5D63r5N036646 for perforce@freebsd.org; Sun, 13 Jun 2004 06:03:53 GMT (envelope-from marcel@freebsd.org) Date: Sun, 13 Jun 2004 06:03:53 GMT Message-Id: <200406130603.i5D63r5N036646@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to marcel@freebsd.org using -f From: Marcel Moolenaar To: Perforce Change Reviews Subject: PERFORCE change 54793 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Jun 2004 06:05:08 -0000 http://perforce.freebsd.org/chv.cgi?CH=54793 Change 54793 by marcel@marcel_nfs on 2004/06/13 06:03:53 Remove assignment to td_last_frame. Affected files ... .. //depot/projects/gdb/sys/i386/i386/intr_machdep.c#6 edit .. //depot/projects/gdb/sys/i386/i386/trap.c#12 edit .. //depot/projects/gdb/sys/i386/isa/clock.c#11 edit Differences ... ==== //depot/projects/gdb/sys/i386/i386/intr_machdep.c#6 (text+ko) ==== @@ -50,7 +50,6 @@ #include #include #include -#include #include #ifdef DDB #include @@ -159,7 +158,6 @@ int error, vector; td = curthread; - td->td_last_frame = INTR_TO_TRAPFRAME(iframe); td->td_intr_nesting_level++; /* ==== //depot/projects/gdb/sys/i386/i386/trap.c#12 (text+ko) ==== @@ -193,8 +193,6 @@ } #endif - td->td_last_frame = &frame; - if ((frame.tf_eflags & PSL_I) == 0) { /* * Buggy application or kernel code has disabled @@ -927,7 +925,6 @@ sticks = td->td_sticks; td->td_frame = &frame; - td->td_last_frame = &frame; if (td->td_ucred != p->p_ucred) cred_update_thread(td); if (p->p_flag & P_SA) ==== //depot/projects/gdb/sys/i386/isa/clock.c#11 (text+ko) ==== @@ -177,8 +177,6 @@ clkintr(struct clockframe *frame) { - curthread->td_last_frame = CLOCK_TO_TRAPFRAME(frame); - if (timecounter->tc_get_timecount == i8254_get_timecount) { mtx_lock_spin(&clock_lock); if (i8254_ticked) @@ -371,8 +369,6 @@ rtcintr(struct clockframe *frame) { - curthread->td_last_frame = CLOCK_TO_TRAPFRAME(frame); - while (rtcin(RTC_INTR) & RTCIR_PERIOD) { if (profprocs != 0) { if (--pscnt == 0)