On Mar 5, 2012, at 2:51 PM, Ben Noordhuis wrote:
> On Mon, Mar 5, 2012 at 13:37, Bert Belder <[email protected]> wrote:
>> Creating an addon that provides an uv_hrtime() binding would be a good
>> cross-platform solution for this.
>
> I don't mind adding a `process.hrtime()` function, it would be useful
> for benchmarks. The problem is that uv_hrtime() returns a 64 bits
> unsigned integer, while JS numbers only have 53 bits of precision.
You could return it % 2^53: 2^53*1e-9/60/60/24 === 104 days
Or an object: {
mod2_53: (ts.tv_sec * NANOSEC + ts.tv_nsec) % 2^53
sec: ts.tv_sec
nsec: ts.tv_nsec }
--
Jorge.
--
Job Board: http://jobs.nodejs.org/
Posting guidelines:
https://github.com/joyent/node/wiki/Mailing-List-Posting-Guidelines
You received this message because you are subscribed to the Google
Groups "nodejs" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/nodejs?hl=en?hl=en