[R-gregmisc-users] SF.net SVN: r-gregmisc:[1351] trunk/fork
Brought to you by:
warnes
From: <wa...@us...> - 2009-07-17 22:01:17
|
Revision: 1351 http://r-gregmisc.svn.sourceforge.net/r-gregmisc/?rev=1351&view=rev Author: warnes Date: 2009-07-17 22:01:07 +0000 (Fri, 17 Jul 2009) Log Message: ----------- Add NAMESPACE file, update version number to 1.2.3 Modified Paths: -------------- trunk/fork/DESCRIPTION trunk/fork/inst/NEWS Added Paths: ----------- trunk/fork/NAMESPACE Modified: trunk/fork/DESCRIPTION =================================================================== --- trunk/fork/DESCRIPTION 2009-07-16 10:55:53 UTC (rev 1350) +++ trunk/fork/DESCRIPTION 2009-07-17 22:01:07 UTC (rev 1351) @@ -1,7 +1,7 @@ Package: fork Title: R functions for handling multiple processes. -Version: 1.2.2 -Date: 2009-05-09 +Version: 1.2.3 +Date: 2009-07-17 Author: Gregory R. Warnes <gr...@ra...>. Financial support for some aspects of this package provided by Metrum Research Group, LLC <http://www.metrumrg.com>. Added: trunk/fork/NAMESPACE =================================================================== --- trunk/fork/NAMESPACE (rev 0) +++ trunk/fork/NAMESPACE 2009-07-17 22:01:07 UTC (rev 1351) @@ -0,0 +1,14 @@ +export( + exit, + fork, + getpid, + handleSIGCLD, + kill, + killall, + restoreSIGCLD, + signal, + signame, + sigval, + siglist, + wait +) Modified: trunk/fork/inst/NEWS =================================================================== --- trunk/fork/inst/NEWS 2009-07-16 10:55:53 UTC (rev 1350) +++ trunk/fork/inst/NEWS 2009-07-17 22:01:07 UTC (rev 1351) @@ -1,12 +1,27 @@ +Version 1.2.3 - 2009-07-17 +========================== +- Add NAMESPACE file + +Version 1.2.2 - 2009-05-09 +=========================== + +- Correct Greg's email address +- Fix syntax error in man page for wait() + +Version 1.2.1 - 2007-10-22 +=========================== + +- Clarify GPL version + Version: 1.2.0 - 2007-03-22 =========================== - - Added new function handleSIGCLD/restoreSIGCLD for setting - up/removing a SIGCLD handler so that fork'ed processes can safely be - ignored without becoming zombies. See ?handleSIGCLD for details. +- Added new function handleSIGCLD/restoreSIGCLD for setting + up/removing a SIGCLD handler so that fork'ed processes can safely be + ignored without becoming zombies. See ?handleSIGCLD for details. - - Added regression tests for SysV and BSD style signal handling that - checks for zombie process creation & tests that signal("SIGCHLD","ignore") - and/or handleSIGCLD() prevents zombie process creation. +- Added regression tests for SysV and BSD style signal handling that + checks for zombie process creation & tests that signal("SIGCHLD","ignore") + and/or handleSIGCLD() prevents zombie process creation. This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |