<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments for The Cliffs of Inanity</title>
	<atom:link href="http://tromey.com/blog/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://tromey.com/blog</link>
	<description></description>
	<lastBuildDate>Wed, 15 May 2013 18:03:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>Comment on 9. Scripting gdb by tom</title>
		<link>http://tromey.com/blog/?p=548&#038;cpage=1#comment-157963</link>
		<dc:creator>tom</dc:creator>
		<pubDate>Wed, 15 May 2013 18:03:31 +0000</pubDate>
		<guid isPermaLink="false">http://tromey.com/blog/?p=548#comment-157963</guid>
		<description><![CDATA[@Michael - there may not be a way right now.  I think symbol table iteration is not very well supported yet.  Please file a bug.]]></description>
		<content:encoded><![CDATA[<p>@Michael &#8211; there may not be a way right now.  I think symbol table iteration is not very well supported yet.  Please file a bug.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 2. Writing a new gdb command by tom</title>
		<link>http://tromey.com/blog/?p=501&#038;cpage=1#comment-157962</link>
		<dc:creator>tom</dc:creator>
		<pubDate>Wed, 15 May 2013 18:02:24 +0000</pubDate>
		<guid isPermaLink="false">http://tromey.com/blog/?p=501#comment-157962</guid>
		<description><![CDATA[@Haitham - I&#039;m not actually sure.  I suggest filing a bug report.]]></description>
		<content:encoded><![CDATA[<p>@Haitham &#8211; I&#8217;m not actually sure.  I suggest filing a bug report.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 9. Scripting gdb by Michael K</title>
		<link>http://tromey.com/blog/?p=548&#038;cpage=1#comment-157956</link>
		<dc:creator>Michael K</dc:creator>
		<pubDate>Wed, 24 Apr 2013 06:40:32 +0000</pubDate>
		<guid isPermaLink="false">http://tromey.com/blog/?p=548#comment-157956</guid>
		<description><![CDATA[Hello Tom,

first of all thank you for your great work, python scripting is a great feature in GDB!

I have a question which I would like to ask you at this place: How can I get an iterator over the global symbol table without having a valid stack frame? I want to write a script which prints out some information on global symbols from within .gdbinit, before execution has been started. I am using GDB 7.5.

Any hint on this would be greatly appreciated!

Michael.]]></description>
		<content:encoded><![CDATA[<p>Hello Tom,</p>
<p>first of all thank you for your great work, python scripting is a great feature in GDB!</p>
<p>I have a question which I would like to ask you at this place: How can I get an iterator over the global symbol table without having a valid stack frame? I want to write a script which prints out some information on global symbols from within .gdbinit, before execution has been started. I am using GDB 7.5.</p>
<p>Any hint on this would be greatly appreciated!</p>
<p>Michael.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 2. Writing a new gdb command by Haitham Gad</title>
		<link>http://tromey.com/blog/?p=501&#038;cpage=1#comment-157950</link>
		<dc:creator>Haitham Gad</dc:creator>
		<pubDate>Wed, 13 Mar 2013 02:41:52 +0000</pubDate>
		<guid isPermaLink="false">http://tromey.com/blog/?p=501#comment-157950</guid>
		<description><![CDATA[I have a question regarding prefix commands. I know that the gdb &quot;logging&quot; command is a prefix command:

set logging file &quot;/tmp/log&quot;
set logging overwrite on

But at the same time, you can give it values independently like:

set logging on
set logging off

In python, if I need to get the value of a sub-parameter, I use:

gdb.parameter(&quot;logging file&quot;)
gdb.parameter(&quot;logging overwrite&quot;)

But how to get the value of the &quot;logging&quot; parameter itself? I tried:

gdb.parameter(&quot;logging&quot;)

but it didn&#039;t work.

Thanks,
Haitham]]></description>
		<content:encoded><![CDATA[<p>I have a question regarding prefix commands. I know that the gdb &#8220;logging&#8221; command is a prefix command:</p>
<p>set logging file &#8220;/tmp/log&#8221;<br />
set logging overwrite on</p>
<p>But at the same time, you can give it values independently like:</p>
<p>set logging on<br />
set logging off</p>
<p>In python, if I need to get the value of a sub-parameter, I use:</p>
<p>gdb.parameter(&#8220;logging file&#8221;)<br />
gdb.parameter(&#8220;logging overwrite&#8221;)</p>
<p>But how to get the value of the &#8220;logging&#8221; parameter itself? I tried:</p>
<p>gdb.parameter(&#8220;logging&#8221;)</p>
<p>but it didn&#8217;t work.</p>
<p>Thanks,<br />
Haitham</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Valgrind and GDB by manu</title>
		<link>http://tromey.com/blog/?p=731&#038;cpage=1#comment-157948</link>
		<dc:creator>manu</dc:creator>
		<pubDate>Wed, 20 Feb 2013 11:06:56 +0000</pubDate>
		<guid isPermaLink="false">http://tromey.com/blog/?p=731#comment-157948</guid>
		<description><![CDATA[Hi Thanks for the info, i was struggling for how to use gdb along with valgrind, this helped.]]></description>
		<content:encoded><![CDATA[<p>Hi Thanks for the info, i was struggling for how to use gdb along with valgrind, this helped.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Emacs and Common Lisp by Erik</title>
		<link>http://tromey.com/blog/?p=709&#038;cpage=1#comment-157945</link>
		<dc:creator>Erik</dc:creator>
		<pubDate>Tue, 05 Feb 2013 01:02:56 +0000</pubDate>
		<guid isPermaLink="false">http://tromey.com/blog/?p=709#comment-157945</guid>
		<description><![CDATA[Rob, one problem I have with emacs that could be solved is the entire process waiting for blocking i/o]]></description>
		<content:encoded><![CDATA[<p>Rob, one problem I have with emacs that could be solved is the entire process waiting for blocking i/o</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Difficulties of elisp by Stefan Monnier</title>
		<link>http://tromey.com/blog/?p=778&#038;cpage=1#comment-157944</link>
		<dc:creator>Stefan Monnier</dc:creator>
		<pubDate>Tue, 11 Dec 2012 15:40:25 +0000</pubDate>
		<guid isPermaLink="false">http://tromey.com/blog/?p=778#comment-157944</guid>
		<description><![CDATA[A `defvar&#039;ed variable should definitely turn into two things:

- an &quot;elisp-var&quot; object.  That object should probably not be a symbol.

- a symbol-macro that expands references into operations on that object.]]></description>
		<content:encoded><![CDATA[<p>A `defvar&#8217;ed variable should definitely turn into two things:</p>
<p>- an &#8220;elisp-var&#8221; object.  That object should probably not be a symbol.</p>
<p>- a symbol-macro that expands references into operations on that object.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on 3. gdb convenience functions by Jet Lau</title>
		<link>http://tromey.com/blog/?p=515&#038;cpage=1#comment-157943</link>
		<dc:creator>Jet Lau</dc:creator>
		<pubDate>Sat, 08 Dec 2012 01:58:54 +0000</pubDate>
		<guid isPermaLink="false">http://tromey.com/blog/?p=515#comment-157943</guid>
		<description><![CDATA[A popen2.Popen3 connect to gdb, and When I write a command through Popen3 to gdb,if it will return somrthing immediately? I am reading some code about this now,I don&#039;t what it return.]]></description>
		<content:encoded><![CDATA[<p>A popen2.Popen3 connect to gdb, and When I write a command through Popen3 to gdb,if it will return somrthing immediately? I am reading some code about this now,I don&#8217;t what it return.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Quick Multi-process Debugging Update by Toby Speight</title>
		<link>http://tromey.com/blog/?p=790&#038;cpage=1#comment-157940</link>
		<dc:creator>Toby Speight</dc:creator>
		<pubDate>Fri, 30 Nov 2012 17:03:37 +0000</pubDate>
		<guid isPermaLink="false">http://tromey.com/blog/?p=790#comment-157940</guid>
		<description><![CDATA[Björn, to reload a module, I use something like

(gdb) python reload(sys.modules[&#039;qt473&#039;])

(qt473 is my - incomplete, and buggy - set of printers for Qt 4.7.3 types)]]></description>
		<content:encoded><![CDATA[<p>Björn, to reload a module, I use something like</p>
<p>(gdb) python reload(sys.modules['qt473'])</p>
<p>(qt473 is my &#8211; incomplete, and buggy &#8211; set of printers for Qt 4.7.3 types)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Valgrind and GDB by Nate</title>
		<link>http://tromey.com/blog/?p=731&#038;cpage=1#comment-157935</link>
		<dc:creator>Nate</dc:creator>
		<pubDate>Sun, 04 Nov 2012 19:21:37 +0000</pubDate>
		<guid isPermaLink="false">http://tromey.com/blog/?p=731#comment-157935</guid>
		<description><![CDATA[Thanks for the great info on hooking up Valgrind + GDB!]]></description>
		<content:encoded><![CDATA[<p>Thanks for the great info on hooking up Valgrind + GDB!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
