From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 24721 invoked by alias); 4 Mar 2011 06:22:10 -0000 Received: (qmail 24712 invoked by uid 22791); 4 Mar 2011 06:22:09 -0000 X-SWARE-Spam-Status: No, hits=-2.0 required=5.0 tests=AWL,BAYES_00,TW_DL,TW_FC,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from rock.gnat.com (HELO rock.gnat.com) (205.232.38.15) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Fri, 04 Mar 2011 06:22:04 +0000 Received: from localhost (localhost.localdomain [127.0.0.1]) by filtered-rock.gnat.com (Postfix) with ESMTP id 29DCD2BAE66 for ; Fri, 4 Mar 2011 01:22:03 -0500 (EST) Received: from rock.gnat.com ([127.0.0.1]) by localhost (rock.gnat.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id aiWsVPItASGT for ; Fri, 4 Mar 2011 01:22:03 -0500 (EST) Received: from kwai.gnat.com (kwai.gnat.com [205.232.38.4]) by rock.gnat.com (Postfix) with ESMTP id 174842BAE61 for ; Fri, 4 Mar 2011 01:22:03 -0500 (EST) Received: by kwai.gnat.com (Postfix, from userid 4233) id 0AA4B92A53; Fri, 4 Mar 2011 01:22:03 -0500 (EST) From: Joel Brobecker To: gdb-patches@sourceware.org Subject: Add support for VxWorks (v3) Date: Fri, 04 Mar 2011 06:22:00 -0000 Message-Id: <1299219720-13398-1-git-send-email-brobecker@adacore.com> Mailing-List: contact gdb-patches-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: gdb-patches-owner@sourceware.org X-SW-Source: 2011-03/txt/msg00251.txt.bz2 Hello, This is version 3 of the series to add support for VxWorks. I think I addressed all the comments I received so far (thank you!): - I moved the "command_post" observer, and then renamed it to "toplevel_command_post". It seemed clearer that way. I'm not completely sure that users are going to like the fact that partition switch notices are no longer printed when that happens inside a script or a command, but I think that'll be OK, and I can deal with that then if they comment on it. - Thanks to Tom's suggestion about how to parse a list in TCL (thanks!) I could reduce a bit the number of parsing routines I'm adding to cli/cli-utils. - New module gdb_dlfcn (provides a platform-indenpendent dlopen/dlsym) - Changed the name of a few commands, as suggested. - Simplified the code in rs6000-vxworks-tdep.c, as per Mark's comments. - Documentation fixes, already reviewed by Eli. I haven't answered Tom's question regarding "partitions" vs "program and address spaces". I haven't completely designed what should be the proper implementation for partitions. But I think it will most likely use those concept. But it'll need some extensions, which I need to formalize, when I have time. I'd like to commit this after a reasonable wait, if all comments have been answered...