forked from Imagelibrary/binutils-gdb
2005-02-14 Andrew Cagney <cagney@gnu.org>
Mark up add_cmd. * arch-utils.c, avr-tdep.c, breakpoint.c, corefile.c: Update. * cp-abi.c, cp-namespace.c, cp-support.c, dummy-frame.c: Update. * exec.c, gnu-nat.c, go32-nat.c, hppa-tdep.c, infcmd.c: Update. * infrun.c, interps.c, macrocmd.c, maint.c, memattr.c: Update. * mips-tdep.c, ocd.c, osabi.c, printcmd.c, regcache.c: Update. * reggroups.c, remote-fileio.c, remote-rdi.c, remote.c: Update. * sol-thread.c, source.c, stack.c, symfile-mem.c: Update. * symfile.c, thread.c, tracepoint.c, valprint.c, value.c: Update. * win32-nat.c, cli/cli-cmds.c, cli/cli-dump.c: Update. * cli/cli-logging.c, tui/tui-regs.c: Update.
This commit is contained in:
@@ -1910,39 +1910,39 @@ _initialize_go32_nat (void)
|
||||
"Print information specific to DJGPP (aka MS-DOS) debugging.",
|
||||
&info_dos_cmdlist, "info dos ", 0, &infolist);
|
||||
|
||||
add_cmd ("sysinfo", class_info, go32_sysinfo,
|
||||
"Display information about the target system, including CPU, OS, DPMI, etc.",
|
||||
add_cmd ("sysinfo", class_info, go32_sysinfo, _("\
|
||||
Display information about the target system, including CPU, OS, DPMI, etc."),
|
||||
&info_dos_cmdlist);
|
||||
add_cmd ("ldt", class_info, go32_sldt,
|
||||
"Display entries in the LDT (Local Descriptor Table).\n"
|
||||
"Entry number (an expression) as an argument means display only that entry.",
|
||||
add_cmd ("ldt", class_info, go32_sldt, _("\
|
||||
Display entries in the LDT (Local Descriptor Table).\n\
|
||||
Entry number (an expression) as an argument means display only that entry."),
|
||||
&info_dos_cmdlist);
|
||||
add_cmd ("gdt", class_info, go32_sgdt,
|
||||
"Display entries in the GDT (Global Descriptor Table).\n"
|
||||
"Entry number (an expression) as an argument means display only that entry.",
|
||||
add_cmd ("gdt", class_info, go32_sgdt, _("\
|
||||
Display entries in the GDT (Global Descriptor Table).\n\
|
||||
Entry number (an expression) as an argument means display only that entry."),
|
||||
&info_dos_cmdlist);
|
||||
add_cmd ("idt", class_info, go32_sidt,
|
||||
"Display entries in the IDT (Interrupt Descriptor Table).\n"
|
||||
"Entry number (an expression) as an argument means display only that entry.",
|
||||
add_cmd ("idt", class_info, go32_sidt, _("\
|
||||
Display entries in the IDT (Interrupt Descriptor Table).\n\
|
||||
Entry number (an expression) as an argument means display only that entry."),
|
||||
&info_dos_cmdlist);
|
||||
add_cmd ("pde", class_info, go32_pde,
|
||||
"Display entries in the Page Directory.\n"
|
||||
"Entry number (an expression) as an argument means display only that entry.",
|
||||
add_cmd ("pde", class_info, go32_pde, _("\
|
||||
Display entries in the Page Directory.\n\
|
||||
Entry number (an expression) as an argument means display only that entry."),
|
||||
&info_dos_cmdlist);
|
||||
add_cmd ("pte", class_info, go32_pte,
|
||||
"Display entries in Page Tables.\n"
|
||||
"Entry number (an expression) as an argument means display only entries\n"
|
||||
"from the Page Table pointed to by the specified Page Directory entry.",
|
||||
add_cmd ("pte", class_info, go32_pte, _("\
|
||||
Display entries in Page Tables.\n\
|
||||
Entry number (an expression) as an argument means display only entries\n\
|
||||
from the Page Table pointed to by the specified Page Directory entry."),
|
||||
&info_dos_cmdlist);
|
||||
add_cmd ("address-pte", class_info, go32_pte_for_address,
|
||||
"Display a Page Table entry for a linear address.\n"
|
||||
"The address argument must be a linear address, after adding to\n"
|
||||
"it the base address of the appropriate segment.\n"
|
||||
"The base address of variables and functions in the debuggee's data\n"
|
||||
"or code segment is stored in the variable __djgpp_base_address,\n"
|
||||
"so use `__djgpp_base_address + (char *)&var' as the argument.\n"
|
||||
"For other segments, look up their base address in the output of\n"
|
||||
"the `info dos ldt' command.",
|
||||
add_cmd ("address-pte", class_info, go32_pte_for_address, _("\
|
||||
Display a Page Table entry for a linear address.\n\
|
||||
The address argument must be a linear address, after adding to\n\
|
||||
it the base address of the appropriate segment.\n\
|
||||
The base address of variables and functions in the debuggee's data\n\
|
||||
or code segment is stored in the variable __djgpp_base_address,\n\
|
||||
so use `__djgpp_base_address + (char *)&var' as the argument.\n\
|
||||
For other segments, look up their base address in the output of\n\
|
||||
the `info dos ldt' command."),
|
||||
&info_dos_cmdlist);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user