public inbox for archer-commits@sourceware.org
help / color / mirror / Atom feed
* [SCM]  archer-pmuldoon-python-breakpoints: Prepare for FSF submission.
@ 2010-10-22 18:01 pmuldoon
  0 siblings, 0 replies; only message in thread
From: pmuldoon @ 2010-10-22 18:01 UTC (permalink / raw)
  To: archer-commits

The branch, archer-pmuldoon-python-breakpoints has been updated
       via  05c0b73273367368265a00f38318c99c2ee55979 (commit)
      from  f119608cfc56c85895d3c47b9242ac960bb0ba94 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email.

- Log -----------------------------------------------------------------
commit 05c0b73273367368265a00f38318c99c2ee55979
Author: Phil Muldoon <pmuldoon@redhat.com>
Date:   Fri Oct 22 19:00:59 2010 +0100

    Prepare for FSF submission.

-----------------------------------------------------------------------

Summary of changes:
 gdb/breakpoint.c           |   13 ++++++-------
 gdb/breakpoint.h           |    2 +-
 gdb/python/py-breakpoint.c |    6 +++---
 gdb/spu-tdep.c             |    2 +-
 4 files changed, 11 insertions(+), 12 deletions(-)

First 500 lines of diff:
diff --git a/gdb/breakpoint.c b/gdb/breakpoint.c
index c07f9f9..c12d06e 100644
--- a/gdb/breakpoint.c
+++ b/gdb/breakpoint.c
@@ -7755,7 +7755,6 @@ create_breakpoint (struct gdbarch *gdbarch,
   return 1;
 }
 
-
 /* Set a breakpoint. 
    ARG is a string describing breakpoint address,
    condition, and thread.
@@ -7780,7 +7779,7 @@ break_command_1 (char *arg, int flag, int from_tty)
 		     NULL /* breakpoint_ops */,
 		     from_tty,
 		     1 /* enabled */,
-		     0 /* Not internal  */);
+		     0 /* internal  */);
 }
 
 
@@ -8825,7 +8824,7 @@ handle_gnu_v3_exceptions (int tempflag, char *cond_string,
 		     AUTO_BOOLEAN_TRUE /* pending */,
 		     &gnu_v3_exception_catchpoint_ops, from_tty,
 		     1 /* enabled */,
-		     0 /* Not internal  */);
+		     0 /* internal  */);
 
   return 1;
 }
@@ -11046,7 +11045,7 @@ trace_command (char *arg, int from_tty)
 			 NULL,
 			 from_tty,
 			 1 /* enabled */,
-			 0 /* Not internal  */))
+			 0 /* internal  */))
     set_tracepoint_count (breakpoint_count);
 }
 
@@ -11063,7 +11062,7 @@ ftrace_command (char *arg, int from_tty)
 			 NULL,
 			 from_tty,
 			 1 /* enabled */,
-			 0 /* Not internal  */))
+			 0 /* internal  */))
     set_tracepoint_count (breakpoint_count);
 }
 
@@ -11082,7 +11081,7 @@ strace_command (char *arg, int from_tty)
 			 NULL,
 			 from_tty,
 			 1 /* enabled */,
-			 0 /* Not internal  */))
+			 0 /* internal  */))
     set_tracepoint_count (breakpoint_count);
 }
 
@@ -11145,7 +11144,7 @@ create_tracepoint_from_upload (struct uploaded_tp *utp)
 			  NULL,
 			  0 /* from_tty */,
 			  utp->enabled /* enabled */,
-			  0 /* Not internal  */))
+			  0 /* internal  */))
     return NULL;
 
   set_tracepoint_count (breakpoint_count);
diff --git a/gdb/breakpoint.h b/gdb/breakpoint.h
index 6b3472e..925193b 100644
--- a/gdb/breakpoint.h
+++ b/gdb/breakpoint.h
@@ -1123,7 +1123,7 @@ extern void end_rbreak_breakpoints (void);
    returned.  This can be useful for implementing a search for a
    breakpoint with arbitrary attributes, or for applying an operation
    to every breakpoint.  */
-extern struct breakpoint *iterate_over_breakpoints (int (*) (struct breakpoint *, 
+extern struct breakpoint *iterate_over_breakpoints (int (*) (struct breakpoint *,
 							     void *), void *);
 
 #endif /* !defined (BREAKPOINT_H) */
diff --git a/gdb/python/py-breakpoint.c b/gdb/python/py-breakpoint.c
index 25938b5..36153ad 100644
--- a/gdb/python/py-breakpoint.c
+++ b/gdb/python/py-breakpoint.c
@@ -573,7 +573,7 @@ bppy_new (PyTypeObject *subtype, PyObject *args, PyObject *kwargs)
 				     &spec, &type, &access_type, &internal))
     return NULL;
 
-  if (internal) 
+  if (internal)
     {
       internal_bp = PyObject_IsTrue (internal);
       if (internal_bp == -1)
@@ -645,10 +645,10 @@ build_bp_list (struct breakpoint *b, void *arg)
      the Python Scripting API.  */
   if (bp)
     iserr = PyList_Append (list, bp);
-  
+
   if (iserr == -1)
     return 1;
-  
+
   return 0;
 }
 
diff --git a/gdb/spu-tdep.c b/gdb/spu-tdep.c
index 24e866b..0e73d92 100644
--- a/gdb/spu-tdep.c
+++ b/gdb/spu-tdep.c
@@ -1896,7 +1896,7 @@ spu_catch_start (struct objfile *objfile)
 		     0 /* ignore_count */,
 		     AUTO_BOOLEAN_FALSE /* pending_break_support */,
 		     NULL /* ops */, 0 /* from_tty */, 1 /* enabled */,
-		     0 /* Not internal  */););
+		     0 /* internal  */););
 }
 
 


hooks/post-receive
--
Repository for Project Archer.


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2010-10-22 18:01 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2010-10-22 18:01 [SCM] archer-pmuldoon-python-breakpoints: Prepare for FSF submission pmuldoon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).