ruby-changes:30516
From: akr <ko1@a...>
Date: Sat, 17 Aug 2013 20:23:21 +0900 (JST)
Subject: [ruby-changes:30516] akr:r42595 (trunk): [DOC]
akr 2013-08-17 20:23:16 +0900 (Sat, 17 Aug 2013) New Revision: 42595 http://svn.ruby-lang.org/cgi-bin/viewvc.cgi?view=rev&revision=42595 Log: [DOC] Modified files: trunk/process.c Index: process.c =================================================================== --- process.c (revision 42594) +++ process.c (revision 42595) @@ -6678,12 +6678,12 @@ rb_proc_times(VALUE obj) https://github.com/ruby/ruby/blob/trunk/process.c#L6678 * +:POSIX_GETTIMEOFDAY_CLOCK_REALTIME+ when clock_gettime() is not available. * * Emulations for +:CLOCK_REALTIME+: - * [:POSIX_GETTIMEOFDAY_CLOCK_REALTIME] Use gettimeofday(). The precision is 1 micro second. - * [:POSIX_TIME_CLOCK_REALTIME] Use time(). The precision is 1 second. + * [:POSIX_GETTIMEOFDAY_CLOCK_REALTIME] Use gettimeofday(). The resolution is 1 micro second. + * [:POSIX_TIME_CLOCK_REALTIME] Use time(). The resolution is 1 second. * * Emulations for +:CLOCK_MONOTONIC+: * [:MACH_ABSOLUTE_TIME_CLOCK_MONOTONIC] Use mach_absolute_time(), available on Darwin. - * The precision is CPU dependent. + * The resolution is CPU dependent. * * If the given +clock_id+ is not supported, Errno::EINVAL is raised. * -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/