Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(3)

Delta Between Two Patch Sets: src/pkg/os/time.go

Issue 5298073: code review 5298073: os: use error, io.EOF (Closed)
Left Patch Set: Created 13 years, 4 months ago
Right Patch Set: diff -r f751618f828b https://go.googlecode.com/hg/ Created 13 years, 4 months ago
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
Right: Side by side diff | Download
« no previous file with change/comment | « src/pkg/os/sys_windows.go ('k') | no next file » | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
(no file at all)
1 // Copyright 2009 The Go Authors. All rights reserved. 1 // Copyright 2009 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 package os 5 package os
6 6
7 import "syscall" 7 import "syscall"
8 8
9 // Time returns the current time, in whole seconds and 9 // Time returns the current time, in whole seconds and
10 // fractional nanoseconds, plus an Error if any. The current 10 // fractional nanoseconds, plus an error if any. The current
11 // time is thus 1e9*sec+nsec, in nanoseconds. The zero of 11 // time is thus 1e9*sec+nsec, in nanoseconds. The zero of
12 // time is the Unix epoch. 12 // time is the Unix epoch.
13 func Time() (sec int64, nsec int64, err Error) { 13 func Time() (sec int64, nsec int64, err error) {
14 var tv syscall.Timeval 14 var tv syscall.Timeval
15 if e := syscall.Gettimeofday(&tv); iserror(e) { 15 if e := syscall.Gettimeofday(&tv); iserror(e) {
16 return 0, 0, NewSyscallError("gettimeofday", e) 16 return 0, 0, NewSyscallError("gettimeofday", e)
17 } 17 }
18 return int64(tv.Sec), int64(tv.Usec) * 1000, err 18 return int64(tv.Sec), int64(tv.Usec) * 1000, err
19 } 19 }
LEFTRIGHT

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b