go/src/runtime/cgo
Srdjan Petrovic a888fcf7a7 runtime: remove runtime wait/notify from ppc64x architectures.
Related to issue #10410

For some reason, any non-trivial code in _cgo_wait_runtime_init_done
(even fprintf()) will crash that call.

If anybody has any guess why this is happening, please let me know!

For now, I'm clearing the functions for ppc64, as it's currently not used.

Change-Id: I1b11383aaf4f9f9a16f1fd6606842cfeedc9f0b3
Reviewed-on: https://go-review.googlesource.com/8766
Reviewed-by: David Crawshaw <crawshaw@golang.org>
Run-TryBot: Srdjan Petrovic <spetrovic@google.com>
2015-04-13 17:21:04 +00:00
..
asm_386.s
asm_amd64.s
asm_arm.s [dev.cc] runtime/cgo: change PC to R15 in asm_arm.s 2015-02-17 18:23:08 +00:00
asm_arm64.s runtime/cgo: linux/arm64 cgo support 2015-04-08 09:08:12 +00:00
asm_nacl_amd64p32.s
asm_ppc64x.s cmd/cgo, runtime/cgo: support ppc64 2015-01-07 20:36:27 +00:00
callbacks.go runtime: initialize shared library at library-load time 2015-04-03 01:24:51 +00:00
cgo.go runtime/cgo: set the initial working directory 2015-02-25 22:22:02 +00:00
dragonfly.go [dev.cc] runtime/cgo: add comment about import _ "unsafe" 2014-11-12 14:54:04 -05:00
freebsd.go [dev.cc] [dev.cc] runtime: fix freebsd cgo __progname export 2014-11-12 17:18:22 -05:00
gcc_386.S
gcc_amd64.S
gcc_android.c
gcc_android_arm.c runtime/cgo: guard against redefinition of PTHREAD_KEYS_MAX 2014-12-18 21:23:25 +00:00
gcc_arm.S runtime/cgo: darwin/arm cgo support 2015-02-06 05:49:35 +00:00
gcc_arm64.S runtime/cgo: linux/arm64 cgo support 2015-04-08 09:08:12 +00:00
gcc_darwin_386.c runtime: assume precisestack, copystack, StackCopyAlways, ScanStackByFrames 2014-09-09 13:39:57 -04:00
gcc_darwin_amd64.c runtime: assume precisestack, copystack, StackCopyAlways, ScanStackByFrames 2014-09-09 13:39:57 -04:00
gcc_darwin_arm.c runtime/cgo: catch EXC_BAD_ACCESS on darwin/arm 2015-03-17 12:12:48 +00:00
gcc_dragonfly_amd64.c runtime: assume precisestack, copystack, StackCopyAlways, ScanStackByFrames 2014-09-09 13:39:57 -04:00
gcc_fatalf.c
gcc_freebsd_386.c runtime: assume precisestack, copystack, StackCopyAlways, ScanStackByFrames 2014-09-09 13:39:57 -04:00
gcc_freebsd_amd64.c runtime: assume precisestack, copystack, StackCopyAlways, ScanStackByFrames 2014-09-09 13:39:57 -04:00
gcc_freebsd_arm.c runtime: assume precisestack, copystack, StackCopyAlways, ScanStackByFrames 2014-09-09 13:39:57 -04:00
gcc_libinit.c runtime: remove runtime wait/notify from ppc64x architectures. 2015-04-13 17:21:04 +00:00
gcc_libinit_linux_ppc64x.c runtime: remove runtime wait/notify from ppc64x architectures. 2015-04-13 17:21:04 +00:00
gcc_libinit_openbsd.c runtime: initialize shared library at library-load time 2015-04-03 01:24:51 +00:00
gcc_libinit_windows.c runtime: initialize shared library at library-load time 2015-04-03 01:24:51 +00:00
gcc_linux_386.c runtime: assume precisestack, copystack, StackCopyAlways, ScanStackByFrames 2014-09-09 13:39:57 -04:00
gcc_linux_amd64.c runtime: assume precisestack, copystack, StackCopyAlways, ScanStackByFrames 2014-09-09 13:39:57 -04:00
gcc_linux_arm.c runtime: assume precisestack, copystack, StackCopyAlways, ScanStackByFrames 2014-09-09 13:39:57 -04:00
gcc_linux_arm64.c runtime/cgo: linux/arm64 cgo support 2015-04-08 09:08:12 +00:00
gcc_linux_ppc64x.c cmd/cgo, runtime/cgo: support ppc64 2015-01-07 20:36:27 +00:00
gcc_netbsd_386.c runtime: assume precisestack, copystack, StackCopyAlways, ScanStackByFrames 2014-09-09 13:39:57 -04:00
gcc_netbsd_amd64.c runtime: assume precisestack, copystack, StackCopyAlways, ScanStackByFrames 2014-09-09 13:39:57 -04:00
gcc_netbsd_arm.c runtime: assume precisestack, copystack, StackCopyAlways, ScanStackByFrames 2014-09-09 13:39:57 -04:00
gcc_openbsd_386.c runtime/cgo: remove unused variable 2015-01-01 03:14:56 +00:00
gcc_openbsd_amd64.c runtime/cgo: initialize our pthread_create wrapper earlier on openbsd 2015-01-01 02:52:34 +00:00
gcc_ppc64x.S cmd/cgo, runtime/cgo: support ppc64 2015-01-07 20:36:27 +00:00
gcc_setenv.c os, syscall: add Unsetenv 2014-10-01 11:17:15 -07:00
gcc_signal_darwin_armx.c runtime/cgo: EXC_BAD_ACCESS handler for arm64 2015-04-13 12:08:37 +00:00
gcc_signal_darwin_lldb.c runtime/cgo: catch EXC_BAD_ACCESS on darwin/arm 2015-03-17 12:12:48 +00:00
gcc_util.c
gcc_windows_386.c runtime: assume precisestack, copystack, StackCopyAlways, ScanStackByFrames 2014-09-09 13:39:57 -04:00
gcc_windows_amd64.c runtime: assume precisestack, copystack, StackCopyAlways, ScanStackByFrames 2014-09-09 13:39:57 -04:00
iscgo.go runtime, runtime/cgo: make needextram a bool 2015-03-26 11:12:25 +00:00
libcgo.h runtime: initialize shared library at library-load time 2015-04-03 01:24:51 +00:00
netbsd.go [dev.cc] runtime/cgo: add comment about import _ "unsafe" 2014-11-12 14:54:04 -05:00
openbsd.go [dev.cc] runtime/cgo: add comment about import _ "unsafe" 2014-11-12 14:54:04 -05:00
setenv.go [dev.cc] runtime/cgo: add comment about import _ "unsafe" 2014-11-12 14:54:04 -05:00
signal_darwin_arm.s runtime/cgo: catch EXC_BAD_ACCESS on darwin/arm 2015-03-17 12:12:48 +00:00
signal_darwin_arm64.s runtime/cgo: EXC_BAD_ACCESS handler for arm64 2015-04-13 12:08:37 +00:00
signal_darwin_armx.go runtime/cgo: catch EXC_BAD_ACCESS on darwin/arm 2015-03-17 12:12:48 +00:00