<feed xmlns='http://www.w3.org/2005/Atom'>
<title>feather-trace-tools.git/st_trace, branch 2012.3</title>
<subtitle>[ARCHIVE] ftcat, ft2csv, and friends. Now on GitHub.</subtitle>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/feather-trace-tools.git/'/>
<entry>
<title>Auto-discover ftcat in st_trace</title>
<updated>2012-10-19T16:50:28+00:00</updated>
<author>
<name>Bjoern Brandenburg</name>
<email>bbb@mpi-sws.org</email>
</author>
<published>2012-09-06T10:22:58+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/feather-trace-tools.git/commit/?id=46a5a8976116026302e9ee9b94bc93cdb40e247f'/>
<id>46a5a8976116026302e9ee9b94bc93cdb40e247f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Added comments to explain each sched_trace ID.</title>
<updated>2012-08-01T07:48:15+00:00</updated>
<author>
<name>Glenn Elliott</name>
<email>gelliott@cs.unc.edu</email>
</author>
<published>2011-04-07T15:31:39+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/feather-trace-tools.git/commit/?id=948a41951d2c62f012dc474d10ec98fab617254b'/>
<id>948a41951d2c62f012dc474d10ec98fab617254b</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Monitors additional action event.</title>
<updated>2011-01-26T22:32:04+00:00</updated>
<author>
<name>Jonathan Herman</name>
<email>hermanjl@cs.unc.edu</email>
</author>
<published>2011-01-26T22:32:04+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/feather-trace-tools.git/commit/?id=1fca88876999299011a7ef21a3f99ad984276f61'/>
<id>1fca88876999299011a7ef21a3f99ad984276f61</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fixup number-of-processor detection to handle ARM /proc/cpuinfo</title>
<updated>2011-01-25T20:12:09+00:00</updated>
<author>
<name>Bjoern B. Brandenburg</name>
<email>bbb@cs.unc.edu</email>
</author>
<published>2010-11-04T15:11:04+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/feather-trace-tools.git/commit/?id=74a3e04ce86302668a7a4fcf6b450a1fb4ef65c1'/>
<id>74a3e04ce86302668a7a4fcf6b450a1fb4ef65c1</id>
<content type='text'>
There's a line with a stray 'processor' in the ARM /proc/cpuinfo that
doesn't start in the first column. Let's not count that.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
There's a line with a stray 'processor' in the ARM /proc/cpuinfo that
doesn't start in the first column. Let's not count that.
</pre>
</div>
</content>
</entry>
<entry>
<title>Change default Feather-Trace device</title>
<updated>2011-01-13T00:34:47+00:00</updated>
<author>
<name>Christopher Kenna</name>
<email>cjk@cs.unc.edu</email>
</author>
<published>2011-01-10T15:00:31+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/feather-trace-tools.git/commit/?id=a466077f928892d2bd28bd13ef39c92ef8553780'/>
<id>a466077f928892d2bd28bd13ef39c92ef8553780</id>
<content type='text'>
Feather-Trace devices are now being created by udev in /dev/litmus.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Feather-Trace devices are now being created by udev in /dev/litmus.
</pre>
</div>
</content>
</entry>
<entry>
<title>Feature: Make st_trace controllable by signals.</title>
<updated>2010-12-02T04:24:31+00:00</updated>
<author>
<name>Glenn Elliott</name>
<email>gelliott@cs.unc.edu</email>
</author>
<published>2010-12-02T04:24:31+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/feather-trace-tools.git/commit/?id=eb18b073e8b04819efdd2b57595bc6e1ee7bc4b6'/>
<id>eb18b073e8b04819efdd2b57595bc6e1ee7bc4b6</id>
<content type='text'>
This patch makes the st_trace script controllable by SIGUSR1.  This
is useful for integrating tracing into an automated script since
st_trace previously was controlled by human input ("Press Enter to
end tracing...").  The old method is still used by default.  Use '-s'
to make st_trace wait for SIGUSR1 to terminate tracing instead.

Note that you can send SIGUSR1 to st_trace with the following example
commands:
&gt; pkill -SIGUSR1 st_trace
&gt; kill -SIGUSR1 &lt;PID for st_trace&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This patch makes the st_trace script controllable by SIGUSR1.  This
is useful for integrating tracing into an automated script since
st_trace previously was controlled by human input ("Press Enter to
end tracing...").  The old method is still used by default.  Use '-s'
to make st_trace wait for SIGUSR1 to terminate tracing instead.

Note that you can send SIGUSR1 to st_trace with the following example
commands:
&gt; pkill -SIGUSR1 st_trace
&gt; kill -SIGUSR1 &lt;PID for st_trace&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>make st_trace more robust</title>
<updated>2008-12-09T17:31:54+00:00</updated>
<author>
<name>Bjoern B. Brandenburg</name>
<email>bbb@cs.unc.edu</email>
</author>
<published>2008-12-09T17:31:54+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/feather-trace-tools.git/commit/?id=a1842e14f55a3230ae076aada09b56e6d6096b47'/>
<id>a1842e14f55a3230ae076aada09b56e6d6096b47</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>add config vars</title>
<updated>2008-11-09T03:02:17+00:00</updated>
<author>
<name>Bjoern B. Brandenburg</name>
<email>bbb@cs.unc.edu</email>
</author>
<published>2008-11-09T03:02:17+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/feather-trace-tools.git/commit/?id=bc456849c14a2bb5fe40bbe9f392a6a47b500a8c'/>
<id>bc456849c14a2bb5fe40bbe9f392a6a47b500a8c</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>consistent naming</title>
<updated>2008-11-09T03:00:49+00:00</updated>
<author>
<name>Bjoern B. Brandenburg</name>
<email>bbb@cs.unc.edu</email>
</author>
<published>2008-11-09T03:00:49+00:00</published>
<link rel='alternate' type='text/html' href='http://rtsrv.cs.unc.edu/cgit/cgit.cgi/feather-trace-tools.git/commit/?id=bf0c915c5e6688711df92b6348c9aa4493b743b5'/>
<id>bf0c915c5e6688711df92b6348c9aa4493b743b5</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
