From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 14767 invoked by alias); 19 Apr 2010 06:47:25 -0000 Received: (qmail 14758 invoked by uid 22791); 19 Apr 2010 06:47:25 -0000 X-SWARE-Spam-Status: No, hits=-0.2 required=5.0 tests=BAYES_00,DNS_FROM_RFC_BOGUSMX,T_RP_MATCHES_RCVD X-Spam-Check-By: sourceware.org Received: from sebabeach.org (HELO sebabeach.org) (64.165.110.50) by sourceware.org (qpsmtpd/0.43rc1) with ESMTP; Mon, 19 Apr 2010 06:47:18 +0000 Received: by sebabeach.org (Postfix, from userid 500) id 75D476E3DC; Sun, 18 Apr 2010 23:47:17 -0700 (PDT) From: Doug Evans To: msnyder@vmware.com, gdb-patches@sourceware.org Subject: [RFA] target record_core -> target record-core? Message-Id: <20100419064717.75D476E3DC@sebabeach.org> Date: Mon, 19 Apr 2010 06:47:00 -0000 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: 2010-04/txt/msg00550.txt.bz2 I realize this is a nit but is it possible to rename target record_core to target record-core? Or is it too late ... All other targets (that I know of) use dashes in shortname, and having to remember which use dashes and which use underscores is, umm, blechy. [Unless we have and enforce a convention, it can only get worse, so might as well establish one now - if it doesn't exist already.] 2010-04-18 Doug Evans * record.c (init_record_core_ops): Rename record_core to record_core. Index: record.c =================================================================== RCS file: /cvs/src/src/gdb/record.c,v retrieving revision 1.44 diff -u -p -r1.44 record.c --- record.c 8 Mar 2010 13:34:38 -0000 1.44 +++ record.c 19 Apr 2010 06:44:51 -0000 @@ -1863,7 +1863,7 @@ record_core_has_execution (struct target static void init_record_core_ops (void) { - record_core_ops.to_shortname = "record_core"; + record_core_ops.to_shortname = "record-core"; record_core_ops.to_longname = "Process record and replay target"; record_core_ops.to_doc = "Log program while executing and replay execution from log.";