* symtab.c (list_symbols): if break command set breakpoint on matched
symbol.
This commit is contained in:
parent
e334d7ea9d
commit
f21c9aecae
2 changed files with 13 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
Fri Aug 11 13:04:32 1995 Kung Hsu <kung@mexican.cygnus.com>
|
||||||
|
|
||||||
|
* symtab.c (list_symbols): if break command set breakpoint on matched
|
||||||
|
symbol.
|
||||||
|
|
||||||
Wed Aug 9 18:59:05 1995 Fred Fish <fnf@cygnus.com>
|
Wed Aug 9 18:59:05 1995 Fred Fish <fnf@cygnus.com>
|
||||||
|
|
||||||
* defs.h (strchr, strrchr, strstr, strtok, strerror): Enclose in
|
* defs.h (strchr, strrchr, strstr, strtok, strerror): Enclose in
|
||||||
|
|
|
@ -16,7 +16,7 @@ GNU General Public License for more details.
|
||||||
|
|
||||||
You should have received a copy of the GNU General Public License
|
You should have received a copy of the GNU General Public License
|
||||||
along with this program; if not, write to the Free Software
|
along with this program; if not, write to the Free Software
|
||||||
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
|
||||||
|
|
||||||
#include "defs.h"
|
#include "defs.h"
|
||||||
#include "symtab.h"
|
#include "symtab.h"
|
||||||
|
@ -2871,6 +2871,13 @@ list_symbols (regexp, class, bpt, from_tty)
|
||||||
(struct block *) NULL, VAR_NAMESPACE,
|
(struct block *) NULL, VAR_NAMESPACE,
|
||||||
0, (struct symtab **) NULL) == NULL)
|
0, (struct symtab **) NULL) == NULL)
|
||||||
{
|
{
|
||||||
|
if (bpt)
|
||||||
|
{
|
||||||
|
break_command (SYMBOL_NAME (msymbol), from_tty);
|
||||||
|
printf_filtered ("<function, no debug info>%s;\n",
|
||||||
|
SYMBOL_SOURCE_NAME (msymbol));
|
||||||
|
continue;
|
||||||
|
}
|
||||||
if (!found_in_file)
|
if (!found_in_file)
|
||||||
{
|
{
|
||||||
printf_filtered ("\nNon-debugging symbols:\n");
|
printf_filtered ("\nNon-debugging symbols:\n");
|
||||||
|
|
Loading…
Add table
Reference in a new issue