diff options
author | John R. Moore <jmoore@redhat.com> | 2001-02-02 20:01:16 +0000 |
---|---|---|
committer | John R. Moore <jmoore@redhat.com> | 2001-02-02 20:01:16 +0000 |
commit | 338d7c5c40ea1cd85be41c8a7f7b3d4d6f679978 (patch) | |
tree | 312aaa3e2890cc0489ba149a944435086943ad5d | |
parent | 2b5436af18f524fe06dc946353b455c2e7179669 (diff) | |
download | gdb-338d7c5c40ea1cd85be41c8a7f7b3d4d6f679978.zip gdb-338d7c5c40ea1cd85be41c8a7f7b3d4d6f679978.tar.gz gdb-338d7c5c40ea1cd85be41c8a7f7b3d4d6f679978.tar.bz2 |
Changed free() to xfree() where appropriate. Also changed Copyright to
include 2001.
-rw-r--r-- | gdb/ChangeLog | 11 | ||||
-rw-r--r-- | gdb/gdbarch.c | 4 | ||||
-rw-r--r-- | gdb/gdbarch.h | 2 | ||||
-rwxr-xr-x | gdb/gdbarch.sh | 6 | ||||
-rw-r--r-- | gdb/remote-utils.h | 4 | ||||
-rw-r--r-- | gdb/symtab.h | 10 | ||||
-rw-r--r-- | gdb/value.h | 5 |
7 files changed, 26 insertions, 16 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 2df3d33..1220766 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,7 +1,16 @@ 2001-02-02 John Moore <jmoore@redhat.com> + * remote-utils.h (sr_set_device): Changed free() to xfree() where + appropriate. Also changed Copyright to include 2001. + * symtab.h (obstack_chunk_free, SYMBOL_INIT_DEMANGLED_NAME): Likewise. + * value.h (value_free): Likewise. + * gdbarch.sh (gdbarch_free): Likewise. + * gdbarch.c, gdbarch.h: Regenerated. + +2001-02-02 John Moore <jmoore@redhat.com> + * cli/cli-cmds.c (apropos_command): Changed occurance of free() to - xfree(). Also changed Copyright to include 2001. + xfree(). Also changed Copyright to include 2001. 2001-02-02 J.T. Conklin <jtc@redback.com> diff --git a/gdb/gdbarch.c b/gdb/gdbarch.c index 4c5c44d..f08cfb5 100644 --- a/gdb/gdbarch.c +++ b/gdb/gdbarch.c @@ -1,7 +1,7 @@ /* *INDENT-OFF* */ /* THIS FILE IS GENERATED */ /* Dynamic architecture support for GDB, the GNU debugger. - Copyright 1998-1999, Free Software Foundation, Inc. + Copyright 1998, 1999, 2000, 2001 Free Software Foundation, Inc. This file is part of GDB. @@ -467,7 +467,7 @@ void gdbarch_free (struct gdbarch *arch) { /* At the moment, this is trivial. */ - free (arch); + xfree (arch); } diff --git a/gdb/gdbarch.h b/gdb/gdbarch.h index a4cd19d..af225fc 100644 --- a/gdb/gdbarch.h +++ b/gdb/gdbarch.h @@ -1,7 +1,7 @@ /* *INDENT-OFF* */ /* THIS FILE IS GENERATED */ /* Dynamic architecture support for GDB, the GNU debugger. - Copyright 1998-1999, Free Software Foundation, Inc. + Copyright 1998, 1999, 2000, 2001 Free Software Foundation, Inc. This file is part of GDB. diff --git a/gdb/gdbarch.sh b/gdb/gdbarch.sh index 578514e..dfc102b 100755 --- a/gdb/gdbarch.sh +++ b/gdb/gdbarch.sh @@ -1,7 +1,7 @@ #!/bin/sh -u # Architecture commands for GDB, the GNU debugger. -# Copyright 1998-2000 Free Software Foundation, Inc. +# Copyright 1998, 1999, 2000, 2001 Free Software Foundation, Inc. # # This file is part of GDB. # @@ -531,7 +531,7 @@ cat <<EOF /* *INDENT-OFF* */ /* THIS FILE IS GENERATED */ /* Dynamic architecture support for GDB, the GNU debugger. - Copyright 1998-1999, Free Software Foundation, Inc. + Copyright 1998, 1999, 2000, 2001 Free Software Foundation, Inc. This file is part of GDB. @@ -1239,7 +1239,7 @@ void gdbarch_free (struct gdbarch *arch) { /* At the moment, this is trivial. */ - free (arch); + xfree (arch); } EOF diff --git a/gdb/remote-utils.h b/gdb/remote-utils.h index 9f57068..30e4ce3 100644 --- a/gdb/remote-utils.h +++ b/gdb/remote-utils.h @@ -1,6 +1,6 @@ /* Generic support for remote debugging interfaces. - Copyright 1993 Free Software Foundation, Inc. + Copyright 1993, 2001 Free Software Foundation, Inc. This file is part of GDB. @@ -53,7 +53,7 @@ extern struct _sr_settings sr_settings; #define sr_get_device() (sr_settings.device) #define sr_set_device(newval) \ { \ - if (sr_settings.device) free(sr_settings.device); \ + if (sr_settings.device) xfree (sr_settings.device); \ sr_settings.device = (newval); \ } diff --git a/gdb/symtab.h b/gdb/symtab.h index 09f08ab..bacf9b3 100644 --- a/gdb/symtab.h +++ b/gdb/symtab.h @@ -1,5 +1,5 @@ /* Symbol table definitions for GDB. - Copyright 1986, 89, 91, 92, 93, 94, 95, 96, 1998 + Copyright 1986, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1998, 2001 Free Software Foundation, Inc. This file is part of GDB. @@ -26,7 +26,7 @@ #include "obstack.h" #define obstack_chunk_alloc xmalloc -#define obstack_chunk_free free +#define obstack_chunk_free xfree #include "bcache.h" /* Don't do this; it means that if some .o's are compiled with GNU C @@ -182,7 +182,7 @@ extern CORE_ADDR symbol_overlayed_address (CORE_ADDR, asection *); SYMBOL_LANGUAGE (symbol) = language_cplus; \ SYMBOL_CPLUS_DEMANGLED_NAME (symbol) = \ obsavestring (demangled, strlen (demangled), (obstack)); \ - free (demangled); \ + xfree (demangled); \ } \ else \ { \ @@ -199,7 +199,7 @@ extern CORE_ADDR symbol_overlayed_address (CORE_ADDR, asection *); SYMBOL_LANGUAGE (symbol) = language_java; \ SYMBOL_CPLUS_DEMANGLED_NAME (symbol) = \ obsavestring (demangled, strlen (demangled), (obstack)); \ - free (demangled); \ + xfree (demangled); \ } \ else \ { \ @@ -217,7 +217,7 @@ extern CORE_ADDR symbol_overlayed_address (CORE_ADDR, asection *); SYMBOL_LANGUAGE (symbol) = language_chill; \ SYMBOL_CHILL_DEMANGLED_NAME (symbol) = \ obsavestring (demangled, strlen (demangled), (obstack)); \ - free (demangled); \ + xfree (demangled); \ } \ else \ { \ diff --git a/gdb/value.h b/gdb/value.h index a404066..0240fa9 100644 --- a/gdb/value.h +++ b/gdb/value.h @@ -1,5 +1,6 @@ /* Definitions for values of C expressions, for GDB. - Copyright 1986, 1987, 1989, 1992-1996, 2000 Free Software Foundation, Inc. + Copyright 1986, 1987, 1989, 1992, 1993, 1994, 1995, 1996, 2000, 2001 + Free Software Foundation, Inc. This file is part of GDB. @@ -456,7 +457,7 @@ extern int unop_user_defined_p (enum exp_opcode op, value_ptr arg1); extern int destructor_name_p (const char *name, const struct type *type); -#define value_free(val) free ((PTR)val) +#define value_free(val) xfree (val) extern void free_all_values (void); |