From 3149d8c1150e24222c6c41e2c0fdde42f202d750 Mon Sep 17 00:00:00 2001 From: Stan Shebs Date: Tue, 6 Apr 2010 17:47:40 +0000 Subject: 2010-04-06 Stan Shebs * defs.h (char_ptr): Move typedef here from... * ada-lang.c (char_ptr): Remove. * charset.c (char_ptr): Remove. * tracepoint.h (struct uploaded_string): Remove. (struct uploaded_tp): Use vectors for string arrays. * tracepoint.c (trace_save): Use vectors of actions. (parse_tracepoint_definition): Ditto. (get_uploaded_tp): Clear vectors. * breakpoint.c (create_tracepoint_from_upload): Use vectors. (next_cmd): Change to an int. (read_next_cmd): Use vector of command strings. --- gdb/defs.h | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'gdb/defs.h') diff --git a/gdb/defs.h b/gdb/defs.h index b7fd97a..e8a1dd4 100644 --- a/gdb/defs.h +++ b/gdb/defs.h @@ -312,6 +312,10 @@ struct cleanup #define ENUM_BITFIELD(TYPE) unsigned int #endif +/* vec.h-style vectors of strings want a typedef for char * . */ + +typedef char * char_ptr; + /* Needed for various prototypes */ struct symtab; -- cgit v1.1