runtime: copy internal locking code from Go 1.7 runtime
Remove the old locking code written in C. Add a shell script mkrsysinfo.sh to generate the runtime_sysinfo.go file, so that we can get Go copies of the system time structures and other types. Tweak the compiler so that when compiling the runtime package the address operator does not cause local variables to escape. When the gc compiler compiles the runtime, an escaping local variable is treated as an error. We should implement that, instead of this change, when escape analysis is turned on. Tweak the compiler so that the generated C header does not include names that start with an underscore followed by a non-upper-case letter, except for the special cases of _defer and _panic. Otherwise we translate C types to Go in runtime_sysinfo.go and then generate those Go types back as C types in runtime.inc, which is useless and painful for the C code. Change entersyscall and friends to take a dummy argument, as the gc versions do, to simplify calls from the shared code. Reviewed-on: https://go-review.googlesource.com/30079 From-SVN: r240657
Showing
This diff is collapsed.
Click to expand it.
libgo/go/runtime/lock_futex.go
0 → 100644
libgo/go/runtime/lock_sema.go
0 → 100644
libgo/go/runtime/os_darwin.go
0 → 100644
libgo/go/runtime/os_dragonfly.go
0 → 100644
libgo/go/runtime/os_freebsd.go
0 → 100644
libgo/go/runtime/os_netbsd.go
0 → 100644
libgo/go/runtime/os_openbsd.go
0 → 100644
libgo/go/runtime/os_solaris.go
0 → 100644
libgo/mkrsysinfo.sh
0 → 100755
libgo/runtime/lock_futex.c
deleted
100644 → 0
libgo/runtime/lock_sema.c
deleted
100644 → 0
Please
register
or
sign in
to comment