include 2001.
+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>
/* *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.
gdbarch_free (struct gdbarch *arch)
{
/* At the moment, this is trivial. */
- free (arch);
+ xfree (arch);
}
/* *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.
#!/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.
#
/* *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.
gdbarch_free (struct gdbarch *arch)
{
/* At the moment, this is trivial. */
- free (arch);
+ xfree (arch);
}
EOF
/* 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.
#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); \
}
/* 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.
#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
SYMBOL_LANGUAGE (symbol) = language_cplus; \
SYMBOL_CPLUS_DEMANGLED_NAME (symbol) = \
obsavestring (demangled, strlen (demangled), (obstack)); \
- free (demangled); \
+ xfree (demangled); \
} \
else \
{ \
SYMBOL_LANGUAGE (symbol) = language_java; \
SYMBOL_CPLUS_DEMANGLED_NAME (symbol) = \
obsavestring (demangled, strlen (demangled), (obstack)); \
- free (demangled); \
+ xfree (demangled); \
} \
else \
{ \
SYMBOL_LANGUAGE (symbol) = language_chill; \
SYMBOL_CHILL_DEMANGLED_NAME (symbol) = \
obsavestring (demangled, strlen (demangled), (obstack)); \
- free (demangled); \
+ xfree (demangled); \
} \
else \
{ \
/* 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.
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);