This is the mail archive of the
gdb-patches@sources.redhat.com
mailing list for the GDB project.
[RFA] strdup->xstrdup
- To: gdb-patches at sources dot redhat dot com
- Subject: [RFA] strdup->xstrdup
- From: Jeff Holcomb <jeffh at redhat dot com>
- Date: Thu, 25 Jan 2001 07:53:00 -0800 (PST)
Updated to include copyright changes. I forgot to mention in my last
message that I did test on linux without regressions.
2001-01-24 Jeff Holcomb <jeffh@redhat.com>
* remote-udi.c (udi_open): Change strdup to xstrdup.
* thread.c (thread_apply_all_command): Change strdup to xstrdup.
Update copyright message.
* varobj.c (delete_variable_1): Likewise.
* gdb_string.h: Remove declaration of strdup. Update copyright
message.
* config/xm-mpw.h: Likewise.
* config/i386/xm-i386mach.h: Likewise.
* config/m68k/xm-apollo68b.h: Likewise.
* config/m68k/xm-hp300bsd.h: Likewise.
* config/rs6000/xm-rs6000.h: Likewise.
* config/vax/xm-vaxult.h: Remove declaration of strdup.
* config/vax/xm-vaxult2.h: Likewise.
Index: gdb_string.h
===================================================================
RCS file: /cvs/src/src/gdb/gdb_string.h,v
retrieving revision 1.2
diff -u -p -r1.2 gdb_string.h
--- gdb_string.h 2000/05/28 01:12:27 1.2
+++ gdb_string.h 2001/01/25 15:27:20
@@ -1,5 +1,5 @@
/* Portable <string.h>
- Copyright 1995, 1998 Free Software Foundation, Inc.
+ Copyright 1995, 1998, 2001 Free Software Foundation, Inc.
This file is part of GDB.
@@ -56,10 +56,6 @@ extern int memcmp ();
#ifndef strerror
extern char *strerror (int); /* X3.159-1989 4.11.6.2 */
#endif
-#endif
-
-#ifdef NEED_DECLARATION_STRDUP
-extern char *strdup (); /* full prototype collides w/ some OSes (AIX 3.2.5) */
#endif
#ifdef NEED_DECLARATION_STRSTR
Index: remote-udi.c
===================================================================
RCS file: /cvs/src/src/gdb/remote-udi.c,v
retrieving revision 1.9
diff -u -p -r1.9 remote-udi.c
--- remote-udi.c 2001/01/23 22:48:55 1.9
+++ remote-udi.c 2001/01/25 15:27:21
@@ -234,7 +234,7 @@ udi_open (char *name, int from_tty)
if (!name)
error ("Usage: target udi config_id, where config_id appears in udi_soc file");
- udi_config_id = strdup (strtok (name, " \t"));
+ udi_config_id = xstrdup (strtok (name, " \t"));
if (UDIConnect (udi_config_id, &udi_session_id))
/* FIXME: Should set udi_session_id to -1 here. */
Index: thread.c
===================================================================
RCS file: /cvs/src/src/gdb/thread.c,v
retrieving revision 1.9
diff -u -p -r1.9 thread.c
--- thread.c 2000/12/15 01:01:50 1.9
+++ thread.c 2001/01/25 15:27:21
@@ -1,5 +1,5 @@
/* Multi-process/thread control for GDB, the GNU debugger.
- Copyright 1986, 1987, 1988, 1993, 1998, 1999, 2000
+ Copyright 1986, 1987, 1988, 1993, 1998, 1999, 2000, 2001
Contributed by Lynx Real-Time Systems, Inc. Los Gatos, CA.
Free Software Foundation, Inc.
@@ -531,7 +531,7 @@ thread_apply_all_command (char *cmd, int
/* Save a copy of the command in case it is clobbered by
execute_command */
- saved_cmd = strdup (cmd);
+ saved_cmd = xstrdup (cmd);
saved_cmd_cleanup_chain = make_cleanup (xfree, (void *) saved_cmd);
for (tp = thread_list; tp; tp = tp->next)
if (thread_alive (tp))
@@ -574,7 +574,7 @@ thread_apply_command (char *tidlist, int
/* Save a copy of the command in case it is clobbered by
execute_command */
- saved_cmd = strdup (cmd);
+ saved_cmd = xstrdup (cmd);
saved_cmd_cleanup_chain = make_cleanup (xfree, (void *) saved_cmd);
while (tidlist < cmd)
{
Index: varobj.c
===================================================================
RCS file: /cvs/src/src/gdb/varobj.c,v
retrieving revision 1.15
diff -u -p -r1.15 varobj.c
--- varobj.c 2001/01/19 05:45:16 1.15
+++ varobj.c 2001/01/25 15:27:26
@@ -1,5 +1,5 @@
/* Implementation of the GDB variable objects API.
- Copyright 1999, 2000 Free Software Foundation, Inc.
+ Copyright 1999, 2000, 2001 Free Software Foundation, Inc.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -1072,7 +1072,7 @@ delete_variable_1 (struct cpstack **resu
yet been installed, don't report it, it belongs to the caller... */
if (var->obj_name != NULL)
{
- cppush (resultp, strdup (var->obj_name));
+ cppush (resultp, xstrdup (var->obj_name));
*delcountp = *delcountp + 1;
}
Index: config/xm-mpw.h
===================================================================
RCS file: /cvs/src/src/gdb/config/xm-mpw.h,v
retrieving revision 1.1.1.2
diff -u -p -r1.1.1.2 xm-mpw.h
--- xm-mpw.h 1999/07/07 20:11:40 1.1.1.2
+++ xm-mpw.h 2001/01/25 15:27:26
@@ -1,5 +1,5 @@
/* Macro definitions for running GDB on Apple Macintoshes.
- Copyright (C) 1994, 1995 Free Software Foundation, Inc.
+ Copyright (C) 1994, 1995, 2001 Free Software Foundation, Inc.
This file is part of GDB.
@@ -41,10 +41,6 @@
#define fgetc hacked_fgetc
#define POSIX_UTIME
-
-/* No declaration of strdup in MPW's string.h, oddly enough. */
-
-char *strdup (char *s1);
/* '.' indicates drivers on the Mac, so we need a different filename. */
Index: config/i386/xm-i386mach.h
===================================================================
RCS file: /cvs/src/src/gdb/config/i386/xm-i386mach.h,v
retrieving revision 1.1.1.2
diff -u -p -r1.1.1.2 xm-i386mach.h
--- xm-i386mach.h 1999/07/07 20:13:35 1.1.1.2
+++ xm-i386mach.h 2001/01/25 15:27:29
@@ -1,5 +1,5 @@
/* Definitions to make GDB run on Mach on an Intel 386
- Copyright (C) 1986, 1987, 1989, 1991, 1992 Free Software Foundation, Inc.
+ Copyright (C) 1986, 1987, 1989, 1991, 1992, 2001 Free Software Foundation, Inc.
This file is part of GDB.
@@ -27,5 +27,3 @@
/* <errno.h> only defines this if __STDC__!!! */
extern int errno;
-
-extern char *strdup ();
Index: config/m68k/xm-apollo68b.h
===================================================================
RCS file: /cvs/src/src/gdb/config/m68k/xm-apollo68b.h,v
retrieving revision 1.1.1.2
diff -u -p -r1.1.1.2 xm-apollo68b.h
--- xm-apollo68b.h 1999/07/07 20:14:41 1.1.1.2
+++ xm-apollo68b.h 2001/01/25 15:27:29
@@ -1,5 +1,5 @@
/* Macro definitions for an Apollo m68k in BSD mode
- Copyright (C) 1992 Free Software Foundation, Inc.
+ Copyright (C) 1992, 2001 Free Software Foundation, Inc.
This file is part of GDB.
@@ -21,5 +21,3 @@
#define HOST_BYTE_ORDER BIG_ENDIAN
#define ALIGN_STACK_ON_STARTUP
-
-extern char *strdup ();
Index: config/m68k/xm-hp300bsd.h
===================================================================
RCS file: /cvs/src/src/gdb/config/m68k/xm-hp300bsd.h,v
retrieving revision 1.2
diff -u -p -r1.2 xm-hp300bsd.h
--- xm-hp300bsd.h 2000/05/28 01:12:36 1.2
+++ xm-hp300bsd.h 2001/01/25 15:27:32
@@ -1,5 +1,5 @@
/* Parameters for hosting on a Hewlett-Packard 9000/300, running bsd.
- Copyright 1986, 1987, 1989, 1991, 1992, 1993 Free Software Foundation, Inc.
+ Copyright 1986, 1987, 1989, 1991, 1992, 1993, 2001 Free Software Foundation, Inc.
This file is part of GDB.
Index: config/rs6000/xm-rs6000.h
===================================================================
RCS file: /cvs/src/src/gdb/config/rs6000/xm-rs6000.h,v
retrieving revision 1.2
diff -u -p -r1.2 xm-rs6000.h
--- xm-rs6000.h 2000/05/28 01:12:39 1.2
+++ xm-rs6000.h 2001/01/25 15:27:39
@@ -1,5 +1,5 @@
/* Parameters for hosting on an RS6000, for GDB, the GNU debugger.
- Copyright 1986-87, 1989, 1991-96, 1998 Free Software Foundation, Inc.
+ Copyright 1986, 1987, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 2001 Free Software Foundation, Inc.
Contributed by IBM Corporation.
This file is part of GDB.
@@ -66,9 +66,6 @@
/* Setpgrp() takes arguments, unlike ordinary Sys V's. */
#define SETPGRP_ARGS 1
-
-/* AIX doesn't have strdup, so we need to declare it for libiberty */
-extern char *strdup (char *);
/* Signal handler for SIGWINCH `window size changed'. */
Index: config/vax/xm-vaxult.h
===================================================================
RCS file: /cvs/src/src/gdb/config/vax/xm-vaxult.h,v
retrieving revision 1.1.1.2
diff -u -p -r1.1.1.2 xm-vaxult.h
--- xm-vaxult.h 1999/07/07 20:17:34 1.1.1.2
+++ xm-vaxult.h 2001/01/25 15:27:39
@@ -1,8 +1,6 @@
/* Definitions to make GDB run on a vax under Ultrix. */
#include "vax/xm-vax.h"
-extern char *strdup ();
-
/* This is required for Ultrix 3.1b, not for later versions. Ultrix
3.1b can't just use xm-vaxult2.h because Ultrix 3.1b does define
FD_SET. Sure, we could have separate configurations for vaxult2,
Index: config/vax/xm-vaxult2.h
===================================================================
RCS file: /cvs/src/src/gdb/config/vax/xm-vaxult2.h,v
retrieving revision 1.1.1.2
diff -u -p -r1.1.1.2 xm-vaxult2.h
--- xm-vaxult2.h 1999/07/07 20:17:35 1.1.1.2
+++ xm-vaxult2.h 2001/01/25 15:27:39
@@ -1,8 +1,6 @@
/* Definitions to make GDB run on a vax under Ultrix. */
#include "vax/xm-vax.h"
-extern char *strdup ();
-
#define NO_PTRACE_H
/* Old versions of ultrix have fd_set but not the FD_* macros. */