We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8618112 commit c96ac60Copy full SHA for c96ac60
src/time/time.go
@@ -51,6 +51,10 @@
51
// readings. If either t or u contains no monotonic clock reading, these
52
// operations fall back to using the wall clock readings.
53
//
54
+// On some systems the monotonic clock will stop if the computer goes to sleep.
55
+// On such a system, t.Sub(u) may not accurately reflect the actual
56
+// time that passed between t and u.
57
+//
58
// Because the monotonic clock reading has no meaning outside
59
// the current process, the serialized forms generated by t.GobEncode,
60
// t.MarshalBinary, t.MarshalJSON, and t.MarshalText omit the monotonic
0 commit comments