]> granicus.if.org Git - php/commitdiff
MFH: Fixed bug #31792 (getrusage() does not provide ru_nswap value).
authorIlia Alshanetsky <iliaa@php.net>
Tue, 1 Mar 2005 21:34:30 +0000 (21:34 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Tue, 1 Mar 2005 21:34:30 +0000 (21:34 +0000)
NEWS
ext/standard/microtime.c

diff --git a/NEWS b/NEWS
index f9a9cda103ef3d43152f66b371498277393d29f2..532770fb58f1ba8689d93de0d8a516d3117979ec 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -26,6 +26,7 @@ PHP 4                                                                      NEWS
 - Fixed bug #31797 (exif_read_data() uses too low nesting limit). (Ilia)
 - Fixed bug #31796 (readline completion handler does not handle empty return
   values). (Ilia)
+- Fixed bug #31792 (getrusage() does not provide ru_nswap value). (Ilia)
 - Fixed bug #31754 (dbase_open() fails for mode = 1). (Mehdi, Derick)
 - Fixed bug #31705 (parse_url() does not recognize http://foo.com#bar). (Ilia)
 - Fixed bug #31684 (dio_tcsetattr(): misconfigured termios settings).
index 414bd027dccb2349e4289822fce59671a37e155f..46f5babf797eec1139918bc6106c2e16b029d83f 100644 (file)
@@ -141,6 +141,7 @@ PHP_FUNCTION(getrusage)
        PHP_RUSAGE_PARA(ru_nsignals);
        PHP_RUSAGE_PARA(ru_nvcsw);
        PHP_RUSAGE_PARA(ru_nivcsw);
+       PHP_RUSAGE_PARA(ru_nswap);
 #endif /*_OSD_POSIX*/
        PHP_RUSAGE_PARA(ru_utime.tv_usec);
        PHP_RUSAGE_PARA(ru_utime.tv_sec);