From owner-freebsd-ppc@FreeBSD.ORG Mon Aug 14 07:28:24 2006 Return-Path: X-Original-To: freebsd-ppc@freebsd.org Delivered-To: freebsd-ppc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A98B616A4F8 for ; Mon, 14 Aug 2006 07:28:24 +0000 (UTC) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id EF04043D45 for ; Mon, 14 Aug 2006 07:28:03 +0000 (GMT) (envelope-from owner-bugmaster@freebsd.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k7E7S3UM038554 for ; Mon, 14 Aug 2006 07:28:03 GMT (envelope-from owner-bugmaster@freebsd.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k7E7S2KJ038550 for freebsd-ppc@FreeBSD.org; Mon, 14 Aug 2006 07:28:02 GMT (envelope-from owner-bugmaster@freebsd.org) Date: Mon, 14 Aug 2006 07:28:02 GMT Message-Id: <200608140728.k7E7S2KJ038550@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: linimon set sender to owner-bugmaster@freebsd.org using -f From: FreeBSD bugmaster To: freebsd-ppc@FreeBSD.org Cc: Subject: Current problem reports assigned to you X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 14 Aug 2006 07:28:24 -0000 Current FreeBSD problem reports Critical problems Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- o power/93203 ppc FreeBSD PPC Can't Write to Partitions. 1 problem total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o power/95367 ppc docs for ppc release. 1 problem total. From owner-freebsd-ppc@FreeBSD.ORG Wed Aug 16 17:53:23 2006 Return-Path: X-Original-To: freebsd-ppc@FreeBSD.org Delivered-To: freebsd-ppc@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A9E116A4EE for ; Wed, 16 Aug 2006 17:53:23 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4625743D5D for ; Wed, 16 Aug 2006 17:52:28 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 1FE7446C90 for ; Wed, 16 Aug 2006 13:52:20 -0400 (EDT) Date: Wed, 16 Aug 2006 18:52:20 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: freebsd-ppc@FreeBSD.org Message-ID: <20060816185026.R38073@fledge.watson.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: Subject: Audit patch X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Aug 2006 17:53:23 -0000 The attached, uncompiled and untested patch adds audit points to the PowerPC system call path. The chances it works are good, the chances of it compiling are moderate. Since I don't have any FreeBSD/ppc boxes set up, a hand in testing and committing would be appreciated. Thanks, Robert N M Watson Computer Laboratory University of Cambridge --- //depot/projects/trustedbsd/base/sys/powerpc/powerpc/trap.c 2006/08/05 14:21:26 +++ //depot/projects/trustedbsd/audit3/sys/powerpc/powerpc/trap.c 2006/08/06 13:22:21 @@ -55,6 +55,8 @@ #endif #include +#include + #include #include #include @@ -418,7 +420,9 @@ PTRACESTOP_SC(p, td, S_PT_SCE); + AUDIT_SYSCALL_ENTER(code, td); error = (*callp->sy_call)(td, params); + AUDIT_SYSCALL_EXIT(error, td); CTR3(KTR_SYSC, "syscall: p=%s %s ret=%x", p->p_comm, syscallnames[code], td->td_retval[0]); From owner-freebsd-ppc@FreeBSD.ORG Wed Aug 16 18:29:02 2006 Return-Path: X-Original-To: freebsd-ppc@freebsd.org Delivered-To: freebsd-ppc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 51C4C16A4DE; Wed, 16 Aug 2006 18:29:02 +0000 (UTC) (envelope-from drosih@rpi.edu) Received: from smtp5.server.rpi.edu (smtp5.server.rpi.edu [128.113.2.225]) by mx1.FreeBSD.org (Postfix) with ESMTP id C52D043D5C; Wed, 16 Aug 2006 18:29:01 +0000 (GMT) (envelope-from drosih@rpi.edu) Received: from [128.113.24.47] (gilead.netel.rpi.edu [128.113.24.47]) by smtp5.server.rpi.edu (8.13.1/8.13.1) with ESMTP id k7GISwex018170; Wed, 16 Aug 2006 14:28:59 -0400 Mime-Version: 1.0 Message-Id: In-Reply-To: <20060816185026.R38073@fledge.watson.org> References: <20060816185026.R38073@fledge.watson.org> Date: Wed, 16 Aug 2006 14:28:57 -0400 To: Robert Watson , freebsd-ppc@freebsd.org From: Garance A Drosihn Content-Type: text/plain; charset="us-ascii" ; format="flowed" X-CanItPRO-Stream: default X-RPI-SA-Score: undef - spam-scanning disabled X-Scanned-By: CanIt (www . canit . ca) Cc: Subject: Re: Audit patch X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Aug 2006 18:29:02 -0000 At 6:52 PM +0100 8/16/06, Robert Watson wrote: >The attached, uncompiled and untested patch adds audit >points to the PowerPC system call path. Does this patch assume a 7.x-current system, or would it serve any purpose to try it on 6.x-stable? -- Garance Alistair Drosehn = gad@gilead.netel.rpi.edu Senior Systems Programmer or gad@freebsd.org Rensselaer Polytechnic Institute or drosih@rpi.edu From owner-freebsd-ppc@FreeBSD.ORG Wed Aug 16 18:38:08 2006 Return-Path: X-Original-To: freebsd-ppc@freebsd.org Delivered-To: freebsd-ppc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B38A116A4DE for ; Wed, 16 Aug 2006 18:38:08 +0000 (UTC) (envelope-from rwatson@FreeBSD.org) Received: from cyrus.watson.org (cyrus.watson.org [209.31.154.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id BAA4F43D66 for ; Wed, 16 Aug 2006 18:38:04 +0000 (GMT) (envelope-from rwatson@FreeBSD.org) Received: from fledge.watson.org (fledge.watson.org [209.31.154.41]) by cyrus.watson.org (Postfix) with ESMTP id 2E42146CA5; Wed, 16 Aug 2006 14:38:04 -0400 (EDT) Date: Wed, 16 Aug 2006 19:38:04 +0100 (BST) From: Robert Watson X-X-Sender: robert@fledge.watson.org To: Garance A Drosihn In-Reply-To: Message-ID: <20060816193727.X38073@fledge.watson.org> References: <20060816185026.R38073@fledge.watson.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII; format=flowed Cc: freebsd-ppc@freebsd.org Subject: Re: Audit patch X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Aug 2006 18:38:08 -0000 On Wed, 16 Aug 2006, Garance A Drosihn wrote: > At 6:52 PM +0100 8/16/06, Robert Watson wrote: >> The attached, uncompiled and untested patch adds audit points to the >> PowerPC system call path. > > Does this patch assume a 7.x-current system, or would it serve any purpose > to try it on 6.x-stable? Currently 7.x only, as audit support isn't MFC'd as yet. It will be MFC'd in the next 2-3 weeks, but I was hoping to sort out this issue, along with a few others, first :-). Thanks, Robert N M Watson Computer Laboratory University of Cambridge From owner-freebsd-ppc@FreeBSD.ORG Wed Aug 16 22:52:08 2006 Return-Path: X-Original-To: freebsd-ppc@FreeBSD.org Delivered-To: freebsd-ppc@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0129916A4DA; Wed, 16 Aug 2006 22:52:08 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk.360sip.com [72.236.70.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 82E4A43D49; Wed, 16 Aug 2006 22:52:07 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.56] ([204.244.149.125]) (authenticated bits=0) by sippysoft.com (8.13.6/8.13.6) with ESMTP id k7GMq4lo028035 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 16 Aug 2006 15:52:05 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-ID: <44E3A162.7000004@FreeBSD.org> Date: Wed, 16 Aug 2006 15:51:14 -0700 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: Marcel Moolenaar References: <44D12AC0.90009@sippysoft.com> <0C6ADBC1-E3DF-47D1-AA77-EA9BD14E059F@xcllnt.net> <44D13736.6000209@freebsd.org> <44D1396A.8000801@sippysoft.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: "current@freebsd.org" , Peter Grehan , freebsd-ppc@FreeBSD.org Subject: Re: Looks like threading is b0rken on FreeBSD/powerpc X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Aug 2006 22:52:08 -0000 Hi Marcel, You have mentioned that you have gdb6 fully working on FreeBSD/powerpc. Can you send me those patches for integration into gdb6 port? Current version doesn't work on live program and unfortunately I don't have time to track this issue down. -Maxim Marcel Moolenaar wrote: > > On Aug 2, 2006, at 4:46 PM, Maxim Sobolev wrote: > >> Peter Grehan wrote: >>>> I could use some help with the ABI details. >>> Fire away Marcel. >>> The SVR4 ppc abi is at >>> http://www.cloudcaptech.com/MPC555%20Resources/Programming%20Environment/SVR4abippc.pdf >>> >> >> I have committed some initial support into devel/gdb6 port. > > Excellent! I'll take a look at it... > > -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net > > > _______________________________________________ > freebsd-current@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-current > To unsubscribe, send any mail to "freebsd-current-unsubscribe@freebsd.org" > > From owner-freebsd-ppc@FreeBSD.ORG Wed Aug 16 23:07:36 2006 Return-Path: X-Original-To: freebsd-ppc@FreeBSD.org Delivered-To: freebsd-ppc@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id ABBB016A4DF; Wed, 16 Aug 2006 23:07:36 +0000 (UTC) (envelope-from grehan@freebsd.org) Received: from dommail.onthenet.com.au (dommail.OntheNet.com.au [203.13.70.57]) by mx1.FreeBSD.org (Postfix) with ESMTP id 75CAE43D49; Wed, 16 Aug 2006 23:07:35 +0000 (GMT) (envelope-from grehan@freebsd.org) Received: from [10.33.24.110] (nat-198-95-226-228.netapp.com [198.95.226.228]) by dommail.onthenet.com.au (MOS 3.5.7-GR) with ESMTP id CAS27094 (AUTH peterg@ptree32.com.au); Thu, 17 Aug 2006 09:07:31 +1000 (EST) Message-ID: <44E3A556.5040306@freebsd.org> Date: Wed, 16 Aug 2006 16:08:06 -0700 From: Peter Grehan User-Agent: Mozilla/5.0 (X11; U; FreeBSD amd64; en-US; rv:1.8b) Gecko/20051014 MIME-Version: 1.0 To: Maxim Sobolev References: <44D12AC0.90009@sippysoft.com> <0C6ADBC1-E3DF-47D1-AA77-EA9BD14E059F@xcllnt.net> <44D13736.6000209@freebsd.org> <44D1396A.8000801@sippysoft.com> <44E3A162.7000004@FreeBSD.org> In-Reply-To: <44E3A162.7000004@FreeBSD.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ppc@FreeBSD.org, "current@freebsd.org" , Peter Grehan Subject: Re: Looks like threading is b0rken on FreeBSD/powerpc X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Aug 2006 23:07:36 -0000 Maxim, > Current version doesn't work on live program and unfortunately I don't > have time to track this issue down. Which version is that ? I have some patches for 6.0 in http://people.freebsd.org/~grehan/gdbsrc.tgz .. which I'm still trying to find time to integrate into -current :( later, Peter. From owner-freebsd-ppc@FreeBSD.ORG Wed Aug 16 23:28:43 2006 Return-Path: X-Original-To: freebsd-ppc@freebsd.org Delivered-To: freebsd-ppc@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 261B316A4DA; Wed, 16 Aug 2006 23:28:43 +0000 (UTC) (envelope-from gavers@mac.com) Received: from smtpout.mac.com (smtpout.mac.com [17.250.248.184]) by mx1.FreeBSD.org (Postfix) with ESMTP id CEB8643D45; Wed, 16 Aug 2006 23:28:42 +0000 (GMT) (envelope-from gavers@mac.com) Received: from mac.com (smtpin08-en2 [10.13.10.153]) by smtpout.mac.com (Xserve/8.12.11/smtpout14/MantshX 4.0) with ESMTP id k7GNSgDg019103; Wed, 16 Aug 2006 16:28:42 -0700 (PDT) Received: from [68.183.67.22] (neptune.unstable.net [68.183.67.22]) (authenticated bits=0) by mac.com (Xserve/smtpin08/MantshX 4.0) with ESMTP id k7GNSXvT004255; Wed, 16 Aug 2006 16:28:40 -0700 (PDT) In-Reply-To: <44E3A556.5040306@freebsd.org> References: <44D12AC0.90009@sippysoft.com> <0C6ADBC1-E3DF-47D1-AA77-EA9BD14E059F@xcllnt.net> <44D13736.6000209@freebsd.org> <44D1396A.8000801@sippysoft.com> <44E3A162.7000004@FreeBSD.org> <44E3A556.5040306@freebsd.org> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: <64683C7E-68DD-49B4-9A50-A0546434911F@mac.com> Content-Transfer-Encoding: 7bit From: Holland Rhodes Date: Wed, 16 Aug 2006 16:28:32 -0700 To: Peter Grehan X-Mailer: Apple Mail (2.752.2) X-Brightmail-Tracker: AAAAAQAAA+k= X-Language-Identified: TRUE Cc: Maxim Sobolev , "current@freebsd.org" , freebsd-ppc@freebsd.org Subject: Re: Looks like threading is broken on FreeBSD/powerpc X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Aug 2006 23:28:43 -0000 Thanks for the patch. Works on my mini. On Aug 16, 2006, at 4:08 PM, Peter Grehan wrote: > Maxim, > >> Current version doesn't work on live program and unfortunately I >> don't have time to track this issue down. > > Which version is that ? > > I have some patches for 6.0 in > > http://people.freebsd.org/~grehan/gdbsrc.tgz > > .. which I'm still trying to find time to integrate into -current :( > > later, > > Peter. > _______________________________________________ > freebsd-ppc@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-ppc > To unsubscribe, send any mail to "freebsd-ppc-unsubscribe@freebsd.org" From owner-freebsd-ppc@FreeBSD.ORG Thu Aug 17 00:40:24 2006 Return-Path: X-Original-To: freebsd-ppc@FreeBSD.org Delivered-To: freebsd-ppc@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 16A4016A4DF; Thu, 17 Aug 2006 00:40:24 +0000 (UTC) (envelope-from sobomax@FreeBSD.org) Received: from sippysoft.com (gk.360sip.com [72.236.70.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8692E43D6E; Thu, 17 Aug 2006 00:40:23 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from [192.168.1.56] ([204.244.149.125]) (authenticated bits=0) by sippysoft.com (8.13.6/8.13.6) with ESMTP id k7H0eJEv029248 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Wed, 16 Aug 2006 17:40:21 -0700 (PDT) (envelope-from sobomax@FreeBSD.org) Message-ID: <44E3BAC1.8050804@FreeBSD.org> Date: Wed, 16 Aug 2006 17:39:29 -0700 From: Maxim Sobolev Organization: Sippy Software, Inc. User-Agent: Thunderbird 1.5.0.5 (Windows/20060719) MIME-Version: 1.0 To: Peter Grehan References: <44D12AC0.90009@sippysoft.com> <0C6ADBC1-E3DF-47D1-AA77-EA9BD14E059F@xcllnt.net> <44D13736.6000209@freebsd.org> <44D1396A.8000801@sippysoft.com> <44E3A162.7000004@FreeBSD.org> <44E3A556.5040306@freebsd.org> In-Reply-To: <44E3A556.5040306@freebsd.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-ppc@FreeBSD.org, "current@freebsd.org" Subject: Re: Looks like threading is b0rken on FreeBSD/powerpc X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2006 00:40:24 -0000 Peter Grehan wrote: > Maxim, > >> Current version doesn't work on live program and unfortunately I don't >> have time to track this issue down. > > Which version is that ? > > I have some patches for 6.0 in > > http://people.freebsd.org/~grehan/gdbsrc.tgz > > .. which I'm still trying to find time to integrate into -current :( Perhaps you should coordinate with Marcel, since he is also working on this. -Maxim From owner-freebsd-ppc@FreeBSD.ORG Thu Aug 17 16:01:52 2006 Return-Path: X-Original-To: ppc@FreeBSD.org Delivered-To: freebsd-ppc@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 03B2E16A4DA; Thu, 17 Aug 2006 16:01:52 +0000 (UTC) (envelope-from marcel@xcllnt.net) Received: from ns1.xcllnt.net (209-128-86-226.bayarea.net [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9998F43D45; Thu, 17 Aug 2006 16:01:51 +0000 (GMT) (envelope-from marcel@xcllnt.net) Received: from [192.168.4.150] (pptp0.pn.xcllnt.net [192.168.4.150]) by ns1.xcllnt.net (8.13.6/8.13.6) with ESMTP id k7HG1oVs024327; Thu, 17 Aug 2006 09:01:50 -0700 (PDT) (envelope-from marcel@xcllnt.net) In-Reply-To: <44E3A162.7000004@FreeBSD.org> References: <44D12AC0.90009@sippysoft.com> <0C6ADBC1-E3DF-47D1-AA77-EA9BD14E059F@xcllnt.net> <44D13736.6000209@freebsd.org> <44D1396A.8000801@sippysoft.com> <44E3A162.7000004@FreeBSD.org> Mime-Version: 1.0 (Apple Message framework v752.2) Content-Type: text/plain; charset=US-ASCII; delsp=yes; format=flowed Message-Id: Content-Transfer-Encoding: 7bit From: Marcel Moolenaar Date: Thu, 17 Aug 2006 09:01:27 -0700 To: Maxim Sobolev X-Mailer: Apple Mail (2.752.2) Cc: "current@freebsd.org" , Peter Grehan , ppc@FreeBSD.org Subject: Re: Looks like threading is b0rken on FreeBSD/powerpc X-BeenThere: freebsd-ppc@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the PowerPC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 17 Aug 2006 16:01:52 -0000 On Aug 16, 2006, at 3:51 PM, Maxim Sobolev wrote: > Hi Marcel, > > You have mentioned that you have gdb6 fully working on FreeBSD/ > powerpc. Can you send me those patches for integration into gdb6 port? I put the diffs against stock GDB 6.5 here: http://www.xcllnt.net/~marcel/gdb-6.5.diff It's a work in progress... -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net