<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/node.git/test/simple/test-child-process-exit-code.js, branch move-debugger-tests</title>
<subtitle>github.com: joyent/node.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/'/>
<entry>
<title>test: replace .addListener() calls with .on()</title>
<updated>2011-10-14T23:08:36+00:00</updated>
<author>
<name>Ben Noordhuis</name>
<email>info@bnoordhuis.nl</email>
</author>
<published>2011-10-14T23:08:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=018e110cd11720997e49c9b270ecc50a04de4ece'/>
<id>018e110cd11720997e49c9b270ecc50a04de4ece</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update copyright headers</title>
<updated>2011-03-15T00:37:05+00:00</updated>
<author>
<name>Ryan Dahl</name>
<email>ry@tinyclouds.org</email>
</author>
<published>2011-03-10T08:54:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=55048cdf79f3c607ab986c35d0422e591e7f6448'/>
<id>55048cdf79f3c607ab986c35d0422e591e7f6448</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>GJSLint all simple tests exclude http-*, url, path</title>
<updated>2010-12-05T23:41:58+00:00</updated>
<author>
<name>Oleg Efimov</name>
<email>efimovov@gmail.com</email>
</author>
<published>2010-12-05T19:15:30+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=0665f0271e71270dc23ec5231b245adfe709a49f'/>
<id>0665f0271e71270dc23ec5231b245adfe709a49f</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix global leaks</title>
<updated>2010-12-04T23:58:50+00:00</updated>
<author>
<name>Ryan Dahl</name>
<email>ry@tinyclouds.org</email>
</author>
<published>2010-12-04T23:20:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=a0159b4b295f69e5653ef96d88de579746dcfdc8'/>
<id>a0159b4b295f69e5653ef96d88de579746dcfdc8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Update tests to work with module contexts</title>
<updated>2010-07-15T21:21:31+00:00</updated>
<author>
<name>Ryan Dahl</name>
<email>ry@tinyclouds.org</email>
</author>
<published>2010-07-15T18:47:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=9fd5e3c89cb3664be7491c2da8e7060a0c36e135'/>
<id>9fd5e3c89cb3664be7491c2da8e7060a0c36e135</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix error reporting in child_process callbacks</title>
<updated>2010-05-09T05:13:34+00:00</updated>
<author>
<name>Ryan Dahl</name>
<email>ry@tinyclouds.org</email>
</author>
<published>2010-05-09T05:11:55+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=264e540d008a251a7e37f367611677414c2591d1'/>
<id>264e540d008a251a7e37f367611677414c2591d1</id>
<content type='text'>
Issue 120, test case by Nathan Ostgard
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Issue 120, test case by Nathan Ostgard
</pre>
</div>
</content>
</entry>
<entry>
<title>Properly handle child process exit codes</title>
<updated>2010-04-28T20:54:17+00:00</updated>
<author>
<name>Felix Geisendörfer</name>
<email>felix@debuggable.com</email>
</author>
<published>2010-04-28T13:04:08+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/node.git/commit/?id=f8a3cf980f09b48ce1c56f11dc47e204093ac8b2'/>
<id>f8a3cf980f09b48ce1c56f11dc47e204093ac8b2</id>
<content type='text'>
The child process 'exit' was returning the status of the process, rather than
the exit code. This patch properly deconstructs the status into the exit code
and the term signal a process may have received.

See:
http://pod.tst.eu/http://cvs.schmorp.de/libev/ev.pod#Watcher_Specific_Functions_and_Data_-5
and waitpid(2)
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The child process 'exit' was returning the status of the process, rather than
the exit code. This patch properly deconstructs the status into the exit code
and the term signal a process may have received.

See:
http://pod.tst.eu/http://cvs.schmorp.de/libev/ev.pod#Watcher_Specific_Functions_and_Data_-5
and waitpid(2)
</pre>
</div>
</content>
</entry>
</feed>
