CHANGES in proc-wait3-1.5.2 vs CHANGES in proc-wait3-1.5.3
- old
+ new
@@ -1,4 +1,17 @@
+== 1.5.3 - 25-Oct-2006
+* Because not all platforms support automatically converting signal names
+ into their equivalent numbers, the Process.pause method now accepts names
+ or numbers. It will raise an ArgumentError if you try to use a signal name
+ on a platform that doesn't support the str2sig() function (such as Linux).
+* Fixed a bug where fractional seconds for utime/stime were not reported in
+ the Process.getrusage method. Thanks go to Eric Hodel for the spot and
+ the patch.
+* Fixed potential bigint overflow issues in the Process.getrusage method.
+ Thanks go again to Eric Hodel.
+* Internal fixes for platforms that don't support the strlcpy() function.
+* Minor update for the test_pause.rb example program.
+
== 1.5.2 - 24-Jul-2006
* Fixed the way I was handling whether or not Ruby already defined the various
RLIMIT constants within wait3.c.
* Fixed the way in which certain RLIM constants were being converted. I
shamelessly plagiarized from process.c for this.