Delta Between Two Patch Sets: src/pkg/runtime/arch_amd64.h
Issue 35990043 :
code review 35990043: runtime: add support for GOOS=solaris
Left Patch Set: diff -r 6835745cc243 https://code.google.com/p/go
Right Patch Set: diff -r ff8459d06e3f https://code.google.com/p/go
Use n/p to move between diff chunks;
N/P to move between comments.
Please Sign in to add in-line comments.
Jump to:
src/cmd/dist/buildruntime.c
src/pkg/runtime/arch_amd64.h
src/pkg/runtime/asm_amd64.s
src/pkg/runtime/cgocall.c
src/pkg/runtime/defs_solaris.go
src/pkg/runtime/defs_solaris_amd64.h
src/pkg/runtime/defs_solaris_amd64.go
src/pkg/runtime/env_posix.c
src/pkg/runtime/lfstack.c
src/pkg/runtime/lock_sema.c
src/pkg/runtime/mem_solaris.c
src/pkg/runtime/netpoll.goc
src/pkg/runtime/os_solaris.h
src/pkg/runtime/os_solaris.c
src/pkg/runtime/os_windows.c
src/pkg/runtime/proc.c
src/pkg/runtime/rt0_solaris_amd64.s
src/pkg/runtime/runtime.h
src/pkg/runtime/runtime.c
src/pkg/runtime/signal_amd64.c
src/pkg/runtime/signal_solaris_amd64.h
src/pkg/runtime/signal_unix.c
src/pkg/runtime/signals_solaris.h
src/pkg/runtime/sys_solaris_amd64.s
src/pkg/runtime/sys_windows_386.s
src/pkg/runtime/sys_windows_amd64.s
src/pkg/runtime/syscall_solaris.goc
src/pkg/runtime/syscall_windows.goc
LEFT RIGHT
(no file at all) 1 // Copyright 2011 The Go Authors. All rights reserved. 1 // Copyright 2011 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style 2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file. 3 // license that can be found in the LICENSE file.
4 4
5 enum { 5 enum {
6 thechar = '6', 6 thechar = '6',
7 BigEndian = 0, 7 BigEndian = 0,
8 CacheLineSize = 64, 8 CacheLineSize = 64,
9 #ifdef GOOS_solaris
10 RuntimeGogoBytes = 80,
11 #else
9 RuntimeGogoBytes = 64, 12 RuntimeGogoBytes = 64,
13 #endif
10 PCQuantum = 1 14 PCQuantum = 1
11 }; 15 };
LEFT RIGHT