2011-01-05 Michael Snyder <msnyder@vmware.com>
* cli/cli-cmds.c: Shorten lines of >= 80 columns. * cli/cli-decode.c: Ditto. * cli/cli-dump.c: Ditto. * cli/cli-logging.c: Ditto. * cli/cli-script.c: Ditto. * cli/cli-setshow.c: Ditto. * common/signals.c: Ditto. * mi/mi-cmd-break.c: Ditto. * mi/mi-cmd-disas.c: Ditto. * mi/mi-cmd-stack.c: Ditto. * mi/mi-cmd-var.c: Ditto. * mi/mi-cmds.c: Ditto. * mi/mi-common.h: Ditto. * mi/mi-console.c: Ditto. * mi/mi-interp.c: Ditto. * mi/mi-main.c: Ditto. * osf-share/cma_attr.c: Ditto. * osf-share/cma_deb_core.h: Ditto. * osf-share/cma_debug_client.h: Ditto. * osf-share/cma_handle.h: Ditto. * osf-share/cma_mutex.h: Ditto. * osf-share/cma_stack_int.h: Ditto. * osf-share/cma_tcb_defs.h: Ditto. * python/py-auto-load.c: Ditto. * python/py-breakpoint.c: Ditto. * python/py-cmd.c: Ditto. * python/py-frame.c: Ditto. * python/py-objfile.c: Ditto. * python/py-param.c: Ditto. * python/py-progspace.c: Ditto. * python/py-symbol.c: Ditto. * python/py-value.c: Ditto. * python/python-internal.h: Ditto. * python/python.c: Ditto. * tui/tui-data.c: Ditto. * tui/tui-disasm.c: Ditto. * tui/tui-hooks.c: Ditto. * tui/tui-io.c: Ditto. * tui/tui-layout.c: Ditto. * tui/tui-regs.c: Ditto. * tui/tui-source.c: Ditto. * tui/tui-stack.c: Ditto. * tui/tui-win.c: Ditto. * tui/tui-windata.c: Ditto. * tui/tui-winsource.c: Ditto.
This commit is contained in:
parent
493e2a69a4
commit
9a2b4c1ba7
46 changed files with 428 additions and 226 deletions
|
@ -339,7 +339,8 @@ gdbpy_initialize_symbols (void)
|
|||
PyModule_AddIntConstant (gdb_module, "SYMBOL_LOC_BLOCK", LOC_BLOCK);
|
||||
PyModule_AddIntConstant (gdb_module, "SYMBOL_LOC_CONST_BYTES",
|
||||
LOC_CONST_BYTES);
|
||||
PyModule_AddIntConstant (gdb_module, "SYMBOL_LOC_UNRESOLVED", LOC_UNRESOLVED);
|
||||
PyModule_AddIntConstant (gdb_module, "SYMBOL_LOC_UNRESOLVED",
|
||||
LOC_UNRESOLVED);
|
||||
PyModule_AddIntConstant (gdb_module, "SYMBOL_LOC_OPTIMIZED_OUT",
|
||||
LOC_OPTIMIZED_OUT);
|
||||
PyModule_AddIntConstant (gdb_module, "SYMBOL_LOC_COMPUTED", LOC_COMPUTED);
|
||||
|
@ -367,7 +368,8 @@ static PyGetSetDef symbol_object_getset[] = {
|
|||
{ "name", sympy_get_name, NULL,
|
||||
"Name of the symbol, as it appears in the source code.", NULL },
|
||||
{ "linkage_name", sympy_get_linkage_name, NULL,
|
||||
"Name of the symbol, as used by the linker (i.e., may be mangled).", NULL },
|
||||
"Name of the symbol, as used by the linker (i.e., may be mangled).",
|
||||
NULL },
|
||||
{ "print_name", sympy_get_print_name, NULL,
|
||||
"Name of the symbol in a form suitable for output.\n\
|
||||
This is either name or linkage_name, depending on whether the user asked GDB\n\
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue