]> Cypherpunks repositories - gostls13.git/commit
runtime: convert syscall_windows.c to Go
authorRuss Cox <rsc@golang.org>
Mon, 15 Sep 2014 01:25:44 +0000 (21:25 -0400)
committerRuss Cox <rsc@golang.org>
Mon, 15 Sep 2014 01:25:44 +0000 (21:25 -0400)
commit2eccf0d18fcbb2f369b80567bb43da58054313b5
treefb0f13a588a60e78d4e5cf02b3dc59fc22ed5422
parent8e77a7ef6bce15e81b9a6ce5cb2fcbe47cd7ab84
runtime: convert syscall_windows.c to Go

This is necessary because syscall.Syscall blocks, and the
garbage collector needs to be able to scan that frame while
it is blocked, and C frames have no garbage collection
information.

Windows builders are broken now due to this problem:
http://build.golang.org/log/152ca9a4be6783d3a8bf6e2f5b9fc265089728b6

LGTM=alex.brainman
R=alex.brainman
CC=golang-codereviews
https://golang.org/cl/144830043
src/runtime/os_windows.c
src/runtime/runtime.h
src/runtime/syscall_windows.c [deleted file]
src/runtime/syscall_windows.go
src/runtime/thunk_windows.s [new file with mode: 0644]
src/syscall/asm_windows.s [deleted file]
src/syscall/dll_windows.go