This is the mail archive of the gdb-cvs@sources.redhat.com mailing list for the GDB project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

src/gdb ChangeLog breakpoint.c


CVSROOT:	/cvs/src
Module name:	src
Changes by:	cagney@sourceware.org	2004-01-27 00:11:39

Modified files:
	gdb            : ChangeLog breakpoint.c 

Log message:
	2004-01-26  Andrew Cagney  <cagney@redhat.com>
	
	* breakpoint.c (watchpoint_check): Delete #if0ed variable.
	(catch_breakpoint): Delete #if0ed function.
	(disable_catch_breakpoint): Ditto.
	(delete_catch_breakpoint, enable_catch_breakpoint): Ditto.
	(disable_catch, enable_catch, delete_catch): Ditto.
	
	Index: breakpoint.c
	===================================================================
	RCS file: /cvs/src/src/gdb/breakpoint.c,v
	retrieving revision 1.149
	diff -u -r1.149 breakpoint.c
	--- breakpoint.c	17 Jan 2004 21:56:12 -0000	1.149
	+++ breakpoint.c	27 Jan 2004 00:11:06 -0000
	@@ -2455,9 +2455,6 @@
	struct breakpoint *b;
	struct frame_info *fr;
	int within_current_scope;
	-#if 0
	-  struct frame_id current_frame_id;
	-#endif
	
	b = bs->breakpoint_at;
	
	@@ -5879,30 +5876,6 @@
	do_cleanups (old_chain);
	}
	
	-#if 0
	-/* These aren't used; I don't konw what they were for.  */
	-/* Set a breakpoint at the catch clause for NAME.  */
	-static int
	-catch_breakpoint (char *name)
	-{
	-}
	-
	-static int
	-disable_catch_breakpoint (void)
	-{
	-}
	-
	-static int
	-delete_catch_breakpoint (void)
	-{
	-}
	-
	-static int
	-enable_catch_breakpoint (void)
	-{
	-}
	-#endif /* 0 */
	-
	static void
	ep_skip_leading_whitespace (char **s)
	{
	@@ -6482,30 +6455,6 @@
	b->thread = -1;
	return b;
	}
	-
	-#if 0
	-/* These aren't used; I don't know what they were for.  */
	-/* Disable breakpoints on all catch clauses described in ARGS.  */
	-static void
	-disable_catch (char *args)
	-{
	-  /* Map the disable command to catch clauses described in ARGS.  */
	-}
	-
	-/* Enable breakpoints on all catch clauses described in ARGS.  */
	-static void
	-enable_catch (char *args)
	-{
	-  /* Map the disable command to catch clauses described in ARGS.  */
	-}
	-
	-/* Delete breakpoints on all catch clauses in the active scope.  */
	-static void
	-delete_catch (char *args)
	-{
	-  /* Map the delete command to catch clauses described in ARGS.  */
	-}
	-#endif /* 0 */
	
	static void
	catch_command (char *arg, int from_tty)

Patches:
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/gdb/ChangeLog.diff?cvsroot=src&r1=1.5281&r2=1.5282
http://sources.redhat.com/cgi-bin/cvsweb.cgi/src/gdb/breakpoint.c.diff?cvsroot=src&r1=1.149&r2=1.150


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]