- 25 Oct, 2017 5 commits
-
-
Tobias Klauser authored
Tested with TestPoll extracted from syscall_linux_test.go. Once Poll is supported on all OSes this test can be moved to syscall_unix_test.go. Change-Id: I03f4396be2e190770abb219c1c5324ca55bcfa27 Reviewed-on: https://go-review.googlesource.com/73430 Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
-
Tobias Klauser authored
Tested with TestPoll extracted from syscall_linux_test.go. Once Poll is supported on all OSes this test can be moved to syscall_unix_test.go. Change-Id: I56ee0124a04c64e3ea51a1653901f2f4277983e6 Reviewed-on: https://go-review.googlesource.com/73370 Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
-
Tobias Klauser authored
Tested with TestPoll extracted from syscall_linux_test.go. Once Poll is supported on all OSes this test can be moved to syscall_unix_test.go. Change-Id: Ia57e3a92e6a50cb22edde8a31e1c4e70d894dc4c Reviewed-on: https://go-review.googlesource.com/73310 Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
-
Tobias Klauser authored
All the implementations of NsecToTimespec and NsecToTimeval were the same other than types. Write a single version that uses GOARCH/GOOS-specific setTimespec and setTimeval functions to handle the types. The logic in NsecToTimespec and NsecToTimeval caused times before 1970 to have a negative usec/nsec. The Linux kernel requires that usec contain a positive number; for consistency, we do this for both NsecToTimespec and NsecToTimeval. Follow CL 30826 which did the same for syscall. Change-Id: Id6c6f4fef8450251447d1a5b01f35c2a36b5aeb1 Reviewed-on: https://go-review.googlesource.com/73170 Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
-
Tobias Klauser authored
Add a test for UtimesNanoAt which makes sure the timestamp of a symlink is updated. Change-Id: I819e43db1d390fb37f011b34e58ff9d3d06595f1 Reviewed-on: https://go-review.googlesource.com/72377 Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
-
- 23 Oct, 2017 3 commits
-
-
Tobias Klauser authored
All implementations of these functions are identical. Follow CL 30819 which did the same for syscall. Change-Id: I3c78f05ea12251306f3e100a006d266154a5238e Reviewed-on: https://go-review.googlesource.com/72378 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
-
Michael Stapelberg authored
To be used e.g. in https://github.com/gokrazy/gokrazy/commit/2e60d5b8c8c35e0eed1bb155c7d709c729c8f041 Change-Id: If79ffec9021dc79375c861a0ddd9dd443adb4692 Reviewed-on: https://go-review.googlesource.com/72375Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com> Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
-
Tobias Klauser authored
They might be used as special values in struct Timespec. See http://man7.org/linux/man-pages/man2/utimensat.2.html for details. Change-Id: I1c2d6d7731ca7f077d033e51ee6421a4f2cfbb89 Reviewed-on: https://go-review.googlesource.com/72376 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
-
- 17 Oct, 2017 1 commit
-
-
Hilko Bengen authored
The current GetProcAddress implementation only resolves functions in DLLs by name. Add GetProcAddressByOrdinal that allows resolving functions by ordinal number, using the same GetProcAddress call from kernel32.dll in the background. This is particularly useful for some functions (e.g. IsOS from shlwapi.dll in some older versions of Windows) that cannot be found by name. Fixes golang/go#16507 Change-Id: Ib5fba7568c365a0aa2491c1261876b3a3929ec3d Reviewed-on: https://go-review.googlesource.com/70690Reviewed-by: Alex Brainman <alex.brainman@gmail.com> Run-TryBot: Alex Brainman <alex.brainman@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
-
- 13 Oct, 2017 1 commit
-
-
Tobias Klauser authored
Follow CL 70590 which did the same for syscall. unix.Select uses SYS_PSELECT6 on arm64 and mipx64x, however this syscall expects its 5th argument to be of type Timespec (with seconds and nanoseconds) instead of type Timeval (with seconds and microseconds) This leads to the timeout being too short by a factor of 1000. This CL fixes this by adjusting the timeout argument accordingly, similarly to how glibc does it for architectures where neither SYS_SELECT nor SYS__NEWSELECT are available. It also makes Pselect generaly available on linux. Updates golang/go#22246 Change-Id: I69f8821a40c59ee469b8a986d784a4db8727ee9a Reviewed-on: https://go-review.googlesource.com/70610 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
-
- 12 Oct, 2017 1 commit
-
-
Tobias Klauser authored
Add the MNT_* flags to be used e.g. with Getfsstat on FreeBSD. Change-Id: I1afb50f715f447f85b4ece3d3fead8b9ce79c4f6 Reviewed-on: https://go-review.googlesource.com/70250Reviewed-by: Matt Layher <mdlayher@gmail.com> Run-TryBot: Matt Layher <mdlayher@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
-
- 06 Oct, 2017 1 commit
-
-
Tobias Klauser authored
Since CL 10087 build tags for GOOS and GOARCH are emitted by mksysctl_openbsd.go but the generated file is always written to zsysctl_openbsd.go. Adjust mkall.sh to write to GOOS/GOARCH specific files and create a zsysctl_openbsd_${GOARCH}.go file for each GOARCH supported on openbsd. Change-Id: Id2a7b2815081f024de0ca87ba870a672bab32d24 Reviewed-on: https://go-review.googlesource.com/68870 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
-
- 27 Sep, 2017 1 commit
-
-
Kevin Burke authored
Move the README to README.md so Gerrit can render it; currently Gerrit only renders files named exactly "README.md" (for example at https://go.googlesource.com/go). Add more links to the README explaining how to file issues, how to submit code changes, where to download the code to and how to get it. Hopefully this should help people who go to https://go.googlesource.com/sys or https://github.com/golang/sys figure out how to get started with development. Change-Id: I2b3b9cb1021292c3cb4b5eb3a84b5c17eb8429da Reviewed-on: https://go-review.googlesource.com/49911Reviewed-by: Kevin Burke <kev@inburke.com>
-
- 22 Sep, 2017 1 commit
-
-
Carlos Eduardo Seo authored
Analog to the runtime package, Select should be using newselect instead of select. This change addresses this problem and regenerates zsyscall_linux_* for ppc64 and ppc64le. Updates golang/go#21946 Change-Id: I7ed5c2490ba2ce556f143f8e8377572ab345f7b8 Reviewed-on: https://go-review.googlesource.com/65091 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Lynn Boger <laboger@linux.vnet.ibm.com>
-
- 21 Sep, 2017 1 commit
-
-
Tobias Klauser authored
When adding Mprotect to TestMmap in CL 56172, PROT_WRITE was implicitly assumed to also include PROT_READ. This is not necessarily true on all OSes and makes TestMmap crash on openbsd/386. As suggested my Mikio Hara fix it by also setting PROT_READ on the memory mapping. Fixes golang/go#21962 Change-Id: Ia789ab8b31f8dec0c3db23cc950ccdd4aab3db05 Reviewed-on: https://go-review.googlesource.com/65230 TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
-
- 19 Sep, 2017 1 commit
-
-
Tobias Klauser authored
CL 62111 removed the _SC_PAGESIZE definition from the types_*.go files but did not re-generate ztypes_solaris_amd64.go. Do so now to get rid of _SC_PAGESIZE there as well. Change-Id: Icde4366f4b7a92e8a89170ad00ff2b807e7655e1 Reviewed-on: https://go-review.googlesource.com/64350Reviewed-by: Ian Lance Taylor <iant@golang.org>
-
- 18 Sep, 2017 2 commits
-
-
Tobias Klauser authored
Add Major, Minor and Mkdev functions for converting device numbers to their major/minor components and vice versa. Use the respective functions provided by the Solaris libc instead of reimplementing them. Test the conversion function with some well-known static device numbers for devices which should be present on any Solaris system. Re-generated files on OpenIndiana Hipster 2017.04 (SunOS 5.11) which also added some previously missing error constants. Change-Id: Ief9ea973d91c24956571eb8fafc8a4525b0f5b90 Reviewed-on: https://go-review.googlesource.com/64390Reviewed-by: Ian Lance Taylor <iant@golang.org>
-
Tobias Klauser authored
Add the Msync function on solaris/amd64. Change-Id: Idde0f9e693f924fef471acb42afb84e83c4cee76 Reviewed-on: https://go-review.googlesource.com/64370Reviewed-by: Ian Lance Taylor <iant@golang.org>
-
- 12 Sep, 2017 4 commits
-
-
Jeet Parekh authored
It has been suggested to migrate from syscall to golang.org/x/sys The NewCallback function works in syscall. But the golang.org/x/sys/windows NewCallback function did not work. Since golang.org/x/sys/windows already imports syscall, the NewCallback function now calls syscall.NewCallback. Fixes golang/go#21831 Change-Id: I5cabd8540777b398a288308a66ae20896ed4a1db Reviewed-on: https://go-review.googlesource.com/63250 Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Alex Brainman <alex.brainman@gmail.com>
-
Tobias Klauser authored
Add Major, Minor and Mkdev functions for converting devices numbers to their major/minor components and vice versa. The functions follow the behavior of the macros defined in OpenBSD's sys/types.h header. However, the parameter and return types are changed to match the existing implementations of these functions. Test the conversion macros with some well-known device numbers. Updates golang/go#8106 Change-Id: Ia50b7ccab18ff7c7e9dd77ddc7e4aa6cf5c79963 Reviewed-on: https://go-review.googlesource.com/63070Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
-
Tobias Klauser authored
Follow CL 63090 and change the Makedev function on Darwin and *BSD to convert to uint64 before shifting/masking. This avoids a potential overflow. Change-Id: I5b566329695cc5edcf82f0ff2366033011b0625b Reviewed-on: https://go-review.googlesource.com/63112Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
-
Tobias Klauser authored
Daniel Swarbrick reports the following go vet warning after CL 50550: .../dev_linux.go:38: (major & 0xfffff000) (32 bits) too small for shift of 32 Fix it by converting major and minor to uint64 before the bitwise-and. Change-Id: If37540be81f2c78a58fd5e5dcce7b770ce7b8afe Reviewed-on: https://go-review.googlesource.com/63090Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
-
- 09 Sep, 2017 1 commit
-
-
Tobias Klauser authored
Add Major, Minor and Mkdev functions for converting devices numbers to their major/minor components and vice versa. The functions follow the behavior of the macros defined in FreeBSD's sys/types.h header. However, the parameter and return types are changed to match the existing implementations of these functions. Because FreeBSD dynamically allocates major/minor device numbers through devfs at runtime, testing the conversion macros against well-known device numbers is not possible. Updates golang/go#8106 Change-Id: I9874e63f388cfc5c0d5cc47d4d0f6ccc489b28f2 Reviewed-on: https://go-review.googlesource.com/61631Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
-
- 08 Sep, 2017 1 commit
-
-
Tobias Klauser authored
Add Major, Minor and Mkdev functions for converting devices numbers to their major/minor components and vice versa. The functions follow the behavior of the macros defined in DragonFlyBSD's sys/types.h header. However, the parameter and return types are changed to match the existing implementations of these functions. Test the conversion macros with some well-known device numbers. Updates golang/go#8106 Change-Id: I84c128dff3108821caaa75dcec620cf5bdb1f32d Reviewed-on: https://go-review.googlesource.com/61630Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
-
- 07 Sep, 2017 2 commits
-
-
Joe Richey joerichey@google.com authored
In general, page size is not a function of the archetecture. This was addressed in the Go standard library here: https://go-review.googlesource.com/25051 This change simply defers to the standard library "syscall" package, which in turn defers to the runtime. This helps in addressing golang/go#10180 and also fixes a bug on ppc64. Currently, we return 65536 as the page size on ppc64, but the kernel supports 4k and 64k sizes, see here: http://elixir.free-electrons.com/linux/v4.13/source/arch/powerpc/include/asm/page.h#L24 Now that various page size calculations are not needed, various components are now dead code and can also be removed. This CL reverts: https://go-review.googlesource.com/14483 and part of: https://go-review.googlesource.com/30755 Change-Id: I9d7a2d96359054e0dca9c985b026c8072b2eeaf3 Reviewed-on: https://go-review.googlesource.com/62111Reviewed-by: Austin Clements <austin@google.com> Run-TryBot: Austin Clements <austin@google.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
-
Joe Richey joerichey@google.com authored
This change updates the Linux symbols to correspond to v4.13 of the kernel and v2.26 of glibc. To get everything building correctly, newer versions of the build tools are required. Instead of trying to get an Ubuntu 17.10 docker image working, we just add Artful sources to /etc/apt/sources.list to get a similar effect. Now that the kernel UAPI is updated, FS_MAX_KEY_SIZE and fscrypt_key no longer need to be manually declared, as they are now in the proper kernel headers. Change-Id: I5f14c99fd70b43dbb8b44e05f53e4e9f09c9a345 Reviewed-on: https://go-review.googlesource.com/61771Reviewed-by: Ian Lance Taylor <iant@golang.org>
-
- 06 Sep, 2017 1 commit
-
-
Joe Richey joerichey@google.com authored
Bash should use "=" not "-eq" for equality comparison. Some incorrect comparison operators were missed in: https://go-review.googlesource.com/c/sys/+/41832 Change-Id: I110968287b7370870301b2fdd2a4ec188f623a39 Reviewed-on: https://go-review.googlesource.com/61770Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org>
-
- 05 Sep, 2017 1 commit
-
-
Joe Richey joerichey@google.com authored
Change https://go-review.googlesource.com/c/sys/+/56172 did not run ./mkall.sh after modifying syscall_linux.go. This change simply runs ./mkall.sh to correctly generate the modified files. Note that the previous change simply reordered a few functions, so the functions are simply reordered in the generated files. Change-Id: I2d819f9ca4ae0e59e67e42d04bb6e6513b3c6c45 Reviewed-on: https://go-review.googlesource.com/61750Reviewed-by: Brad Fitzpatrick <bradfitz@golang.org> Run-TryBot: Brad Fitzpatrick <bradfitz@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
-
- 01 Sep, 2017 2 commits
-
-
Tobias Klauser authored
Add Major, Minor and Mkdev functions for converting devices numbers to their major/minor components and vice versa. The functions follow the behavior of the macros defined in NetBSD's sys/types.h header. However, the parameter and return types are changed to match the existing implementations of these functions. Test the conversion macros with some well-known device numbers. Updates golang/go#8106 Change-Id: I536d6d2622f6fe9be3c1ed3beb266745fe4bfb6e Reviewed-on: https://go-review.googlesource.com/60970Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
-
Tobias Klauser authored
Add Major, Minor and Mkdev functions for converting devices numbers to their major/minor components and vice versa. The functions follow the behavior of the macros defined in Darwin's sys/types.h header. However, the parameter and return types are changed to match the respective Linux implementation of these functions. Test the conversion macros with some well-known static device numbers for devices which should be present on any Darwin system. Updates golang/go#8106 Change-Id: I1862be64684cc1b5a53e15a883819571e368cb2b Reviewed-on: https://go-review.googlesource.com/60610Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
-
- 30 Aug, 2017 1 commit
-
-
Luca Bruno authored
This commit relaxes SendmsgN behavior of introducing a dummy 1-byte payload when sending ancillary-only messages. The fake payload is not needed for SOCK_DGRAM type sockets, and actually breaks interoperability with other fd-passing software (journald is one known example). This introduces an additional check to avoid injecting dummy payload in such case. Backport of https://go.googlesource.com/go/+/93da0b6e66f24c4c307e0df37ceb102a33306174 Full reference at https:/golang.org/issue/6476#issue-51285243 Change-Id: I7cf00a1c7cde75fe62e00b98ccba6ac8469b0493 Reviewed-on: https://go-review.googlesource.com/60190Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
-
- 29 Aug, 2017 1 commit
-
-
Matt Layher authored
Generic netlink is a generalized netlink family which enables a series of different communication channels to be multiplexed on a single netlink family. For more information, please see: https://lwn.net/Articles/208755/. Fixes golang/go#21682. Change-Id: I2095150e06471f4a0e1322fba669573aa8f0a9b1 Reviewed-on: https://go-review.googlesource.com/59931 Run-TryBot: Matt Layher <mdlayher@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
-
- 25 Aug, 2017 2 commits
-
-
Matt Layher authored
I falsely assumed that enum values would be generated automatically, but now realize that the previous values I added were actually generated from preprocessor define statements. This change adds some missing values I intended to add in CL 59050. Fixes golang/go#21623. Change-Id: I3c40c8454ee1d323e1e4e014febe0874e859a378 Reviewed-on: https://go-review.googlesource.com/59090 Run-TryBot: Matt Layher <mdlayher@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
-
Matt Layher authored
Taskstats is a netlink-based interface for sending per-task and per-process statistics from the kernel to userspace. For more information, please see: https://www.kernel.org/doc/Documentation/accounting/taskstats.txt. Fixes golang/go#21616. Change-Id: I7d4b8035aa8e993074d61911d9a8c3a3e61c9b2e Reviewed-on: https://go-review.googlesource.com/59050 Run-TryBot: Matt Layher <mdlayher@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
-
- 21 Aug, 2017 1 commit
-
-
Tobias Klauser authored
Add CreateEventEx, OpenEvent, ResetEvent and PulseEvent. Also change eventAttrs to use the local definition of the SecurityAttributes type, not the one from syscall. GetConsoleScreenBufferInfo is also changed by re-running 'go generate' to pass a pointer to ConsoleScreenBufferInfo (instead of a pointer to pointer). Change-Id: I08dff4360186b04c55fd0362e31920f38206157b Reviewed-on: https://go-review.googlesource.com/56110Reviewed-by: Alex Brainman <alex.brainman@gmail.com> Run-TryBot: Alex Brainman <alex.brainman@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
-
- 17 Aug, 2017 1 commit
-
-
Tobias Klauser authored
Make Madvice, Mlock, Mlockall, Mprotect, Msync, Munlock and Munlockall available equally on all BSD flavors. NetBSD was previously lacking SYS_MSYNC, so add it. Reorder the //sys function prototype alphabetically and clean up already implemented syscalls everywhere. Also add tests for Mprotect, Msync and Madvice - now that they're available on all unix platforms. Fixes golang/go#18513 Change-Id: I0eb502d72c7e991f191fb96225ef04e8297d8b8d Reviewed-on: https://go-review.googlesource.com/56172 Run-TryBot: Daniel Martí <mvdan@mvdan.cc> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Daniel Martí <mvdan@mvdan.cc> Reviewed-by: Ian Lance Taylor <iant@golang.org>
-
- 15 Aug, 2017 1 commit
-
-
Tobias Klauser authored
Follow CL golang.org/cl/55690 (which did the same for syscall) and fix the definition of AT_FDCWD on dragonfly/amd64. Change-Id: I2c44a0f84308697d3dbac9b78c4a3dce973f88ba Reviewed-on: https://go-review.googlesource.com/55691Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
-
- 14 Aug, 2017 2 commits
-
-
Tobias Klauser authored
Follow golang.org/cl/55130 and add the utimensat syscall on *BSD. Use it in UtimesNano and UtimesNanoAt (which is added on *BSD, akin to the already existing implementation on Linux and Solaris). Also add AT_FDCWD and AT_SYMLINK_NOFOLLOW where they are missing. These might be used with UtimesNanoAt. In order to be able to generate the syscalls, also add two missing $GOOS_$GOARCH patterns to mkall.sh. As a side effect, some additional syscalls are added for openbsd/arm. Change-Id: I85351098002209f8454ec328cef0cfe9d12c5214 Reviewed-on: https://go-review.googlesource.com/55071Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
-
Sean Chittenden authored
Fixes: golang/go#21410 Change-Id: Ie1971f7d6e0cfe405603e94c538a15dd5f467392 Reviewed-on: https://go-review.googlesource.com/55230 Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
-
- 09 Aug, 2017 1 commit
-
-
Yuval Pavel Zholkover authored
Fixes golang/go#21375 Change-Id: Ibb33df9d71eb3a935a1f8f9f0ad1f180211e8ce4 Reviewed-on: https://go-review.googlesource.com/54390Reviewed-by: Ian Lance Taylor <iant@golang.org> Run-TryBot: Ian Lance Taylor <iant@golang.org> TryBot-Result: Gobot Gobot <gobot@golang.org>
-