Change 301951 by kmacy@kmacy:gdb6-linux on 2004/01/21 12:56:40 Affected files ... ... //depot/tools/main/gdb/gdb/command.h#9 edit ... //depot/tools/main/gdb/gdb/expression.h#12 edit ... //depot/tools/main/gdb/gdb/ffi.c#1 add ... //depot/tools/main/gdb/gdb/ffi.i#1 add ... //depot/tools/main/gdb/gdb/ffi.pm#1 add ... //depot/tools/main/gdb/gdb/ffi_parse.pm#1 add ... //depot/tools/main/gdb/gdb/ffi_wrap.c#1 add ... //depot/tools/main/gdb/gdb/gdb_ffi.pm#1 add ... //depot/tools/main/gdb/gdb/mi/mi-out.c#5 edit ... //depot/tools/main/gdb/gdb/mi/mi-out.h#4 edit ... //depot/tools/main/gdb/gdb/ui-file.c#5 edit ... //depot/tools/main/gdb/gdb/ui-file.h#5 edit Differences ... ==== //depot/tools/main/gdb/gdb/command.h#9 (text+ko) ==== 38c38 < class_pseudo, class_tui, class_xdb --- > class_pseudo, class_tui, class_xdb, class_ffi ==== //depot/tools/main/gdb/gdb/expression.h#12 (text+ko) ==== ==== //depot/tools/main/gdb/gdb/mi/mi-out.c#5 (text) ==== 380a381,387 > void * > mi_out_file(struct ui_out_data *data) { > return data->buffer; > } > > > 406a414,427 > void > mi_out_free(struct ui_out *out) > { > struct ui_out_data *data = ui_out_data(out); > struct ui_file *file = mi_out_file(data); > struct mem_file *stream = ui_file_data(file); > char *buffer = mem_file_buffer(stream); > xfree(buffer); > xfree(stream); > xfree(file); > xfree(data); > } > > ==== //depot/tools/main/gdb/gdb/mi/mi-out.h#4 (text) ==== 27a28 > extern void mi_out_free(struct ui_out *); 31a33,34 > extern void *mi_out_file(struct ui_out_data *); > ==== //depot/tools/main/gdb/gdb/ui-file.c#5 (text) ==== 405a406,418 > > void * > mem_file_buffer(struct mem_file *stream) { > return stream->buffer; > } > > int > mem_file_buffer_length(struct mem_file *stream) { > return stream->length_buffer; > } > > > ==== //depot/tools/main/gdb/gdb/ui-file.h#5 (text) ==== 24a25 > struct mem_file; 88a90,91 > extern void *mem_file_buffer(struct mem_file *); > extern int mem_file_buffer_length(struct mem_file *);