public inbox for frysk-cvs@sourceware.org
help / color / mirror / Atom feed
From: swagiaal@sourceware.org
To: frysk-cvs@sourceware.org
Subject: [SCM]  master: swagiaal: Renamed  DwarfDie.getParent to getDwfl
Date: Mon, 03 Dec 2007 22:03:00 -0000	[thread overview]
Message-ID: <20071203220303.2016.qmail@sourceware.org> (raw)

The branch, master has been updated
       via  12a00e7ea3e7a513e2934c942e56ec4d61d15830 (commit)
      from  32035e6f7ed081a0d73a4fd035b142981048a220 (commit)

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

- Log -----------------------------------------------------------------
commit 12a00e7ea3e7a513e2934c942e56ec4d61d15830
Author: Sami Wagiaalla <swagiaal@redhat.com>
Date:   Mon Dec 3 17:01:50 2007 -0500

    swagiaal: Renamed  DwarfDie.getParent to getDwfl
    
    frysk-sys/lib/dwfl/ChangeLog
    +2007-12-03  Sami Wagiaalla  <swagiaal@redhat.com>
    +
    +       * DwarfDie.java (getDwfl): renamed getParent to getDwfl.
    +

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

Summary of changes:
 frysk-sys/lib/dwfl/ChangeLog     |    4 ++++
 frysk-sys/lib/dwfl/DwarfDie.java |   20 ++++++++++----------
 2 files changed, 14 insertions(+), 10 deletions(-)

First 500 lines of diff:
diff --git a/frysk-sys/lib/dwfl/ChangeLog b/frysk-sys/lib/dwfl/ChangeLog
index a1bdd0c..1884fc3 100644
--- a/frysk-sys/lib/dwfl/ChangeLog
+++ b/frysk-sys/lib/dwfl/ChangeLog
@@ -1,5 +1,9 @@
 2007-12-03  Sami Wagiaalla  <swagiaal@redhat.com>
 
+	* DwarfDie.java (getDwfl): renamed getParent to getDwfl.
+
+2007-12-03  Sami Wagiaalla  <swagiaal@redhat.com>
+
 	* DwflModule.java (getPubNames): New function.
 	* cni/DwflModule.cxx: Implemented get_pubnames
 	* Dwfl.java: Changed factory from private to protected
diff --git a/frysk-sys/lib/dwfl/DwarfDie.java b/frysk-sys/lib/dwfl/DwarfDie.java
index 0868d42..1693532 100644
--- a/frysk-sys/lib/dwfl/DwarfDie.java
+++ b/frysk-sys/lib/dwfl/DwarfDie.java
@@ -47,17 +47,17 @@ abstract public class DwarfDie {
     private long pointer;
     private DwarfDie[] scopes;
     private int scopeIndex;
-    private Dwfl parent;
+    private Dwfl dwfl;
 
     protected boolean manageDie = false;
   
     protected DwarfDie(long pointer, Dwfl parent) {
 	this.pointer = pointer;
-	this.parent = parent;
+	this.dwfl = parent;
     }
 
-    protected Dwfl getParent () {
-	return this.parent;
+    protected Dwfl getDwfl () {
+	return this.dwfl;
     }
 
     public long getHighPC () {
@@ -106,7 +106,7 @@ abstract public class DwarfDie {
 	DwarfDieFactory factory = DwarfDieFactory.getFactory();
 	for(int i = 0; i < vals.length; i++)
 	    if(vals[i] != 0)
-		dies[i] = factory.makeDie(vals[i], this.parent);
+		dies[i] = factory.makeDie(vals[i], this.dwfl);
 	    else
 		dies[i] = null;
 
@@ -123,7 +123,7 @@ abstract public class DwarfDie {
 	DwarfDieFactory factory = DwarfDieFactory.getFactory();
 	for(int i = 0; i < vals.length; i++) {
 	    if(vals[i] != 0)
-		dies[i] = factory.makeDie(vals[i], this.parent);
+		dies[i] = factory.makeDie(vals[i], this.dwfl);
 	    else
 		dies[i] = null;
 	}
@@ -145,7 +145,7 @@ abstract public class DwarfDie {
 	long val = get_scopevar(die_and_scope, vals, variable);
 	if (val >= 0) {
 	    die = DwarfDieFactory.getFactory().makeDie(die_and_scope[0],
-						       this.parent);
+						       this.dwfl);
 	    die.scopes = scopes;
 	    die.scopeIndex = (int)die_and_scope[1];
 	}
@@ -222,7 +222,7 @@ abstract public class DwarfDie {
 	DwarfDie die = null;
 	long type = get_type(this.getPointer(), followTypeDef);
 	if (type != 0)
-	    die = DwarfDieFactory.getFactory().makeDie(type, this.parent);
+	    die = DwarfDieFactory.getFactory().makeDie(type, this.dwfl);
 	return die;
     }
 
@@ -255,7 +255,7 @@ abstract public class DwarfDie {
 	long child = get_child(this.getPointer());
 	DwarfDie die = null;
 	if (child != 0)
-	    die = DwarfDieFactory.getFactory().makeDie(child, this.parent);
+	    die = DwarfDieFactory.getFactory().makeDie(child, this.dwfl);
 	return die;
     }
 
@@ -266,7 +266,7 @@ abstract public class DwarfDie {
 	long sibling = get_sibling(this.getPointer());
 	DwarfDie die = null;
 	if (sibling != 0)
-	    die = DwarfDieFactory.getFactory().makeDie(sibling, this.parent);
+	    die = DwarfDieFactory.getFactory().makeDie(sibling, this.dwfl);
 	return die;
     }
   


hooks/post-receive
--
frysk system monitor/debugger


                 reply	other threads:[~2007-12-03 22:03 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20071203220303.2016.qmail@sourceware.org \
    --to=swagiaal@sourceware.org \
    --cc=frysk-cvs@sourceware.org \
    --cc=frysk@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).