1
0
mirror of https://github.com/golang/go synced 2024-11-23 15:40:06 -07:00

doc/go1.4.txt: implement monotonic clocks on windows

LGTM=dave
R=golang-codereviews, dave
CC=golang-codereviews
https://golang.org/cl/126760043
This commit is contained in:
Alex Brainman 2014-08-07 10:25:50 +10:00
parent a2d3669ef7
commit 7ce3406c8f

View File

@ -10,6 +10,7 @@ spec: permit for range x (CL 104680043)
encoding/gob: remove unsafe (CL 102680045) encoding/gob: remove unsafe (CL 102680045)
misc: deleted editor support; refer to https://code.google.com/p/go-wiki/wiki/IDEsAndTextEditorPlugins instead (CL 105470043) misc: deleted editor support; refer to https://code.google.com/p/go-wiki/wiki/IDEsAndTextEditorPlugins instead (CL 105470043)
os: implement symlink support for windows (CL 86160044) os: implement symlink support for windows (CL 86160044)
runtime: implement monotonic clocks on windows (CL 108700045)
runtime/race: freebsd is supported (CL 107270043) runtime/race: freebsd is supported (CL 107270043)
syscall: Setuid, Setgid are disabled on linux platforms. On linux those syscalls operate on the calling thread, not the whole process. This does not match the semantics of other platforms, nor the expectations of the caller, so the operations have been disabled until issue 1435 is resolved (CL 106170043) syscall: Setuid, Setgid are disabled on linux platforms. On linux those syscalls operate on the calling thread, not the whole process. This does not match the semantics of other platforms, nor the expectations of the caller, so the operations have been disabled until issue 1435 is resolved (CL 106170043)
testing: add Coverage (CL 98150043) testing: add Coverage (CL 98150043)