...
  Package sys
	
	
		
		
		
		
			
				
			
			
				
				
package sys contains system- and configuration- and architecture-specific
constants used by the runtime.
			 
		 
		
		
		
		
			
		
 
		
			
			
			  In the call graph viewer below, each node
			  is a function belonging to this package
			  and its children are the functions it
			  calls—perhaps dynamically.
			
			
			  The root nodes are the entry points of the
			  package: functions that may be called from
			  outside the package.
			  There may be non-exported or anonymous
			  functions among them if they are called
			  dynamically from another package.
			
			
			  Click a node to visit that function's source code.
			  From there you can visit its callers by
			  clicking its declaring func
			  token.
			
			
			  Functions may be omitted if they were
			  determined to be unreachable in the
			  particular programs or tests that were
			  analyzed.
			
			
			
		 
		  
		
			Constants
			
				const (
        TheChar       = '6'
        BigEndian     = 0
        CacheLineSize = 64
        PhysPageSize  = 4096
        PCQuantum     = 1
        Int64Align    = 8
        HugePageSize  = 1 << 21
        MinFrameSize  = 0
)
				
			
				const Goarch386 = 0
				
			
				const GoarchAmd64 = 1
				
			
				const GoarchAmd64p32 = 0
				
			
				const GoarchArm = 0
				
			
				const GoarchArm64 = 0
				
			
				const GoarchArm64be = 0
				
			
				const GoarchArmbe = 0
				
			
				const GoarchMips = 0
				
			
				const GoarchMips64 = 0
				
			
				const GoarchMips64le = 0
				
			
				const GoarchMips64p32 = 0
				
			
				const GoarchMips64p32le = 0
				
			
				const GoarchMipsle = 0
				
			
				const GoarchPpc = 0
				
			
				const GoarchPpc64 = 0
				
			
				const GoarchPpc64le = 0
				
			
				const GoarchS390 = 0
				
			
				const GoarchS390x = 0
				
			
				const GoarchSparc = 0
				
			
				const GoarchSparc64 = 0
				
			
				const GoosAndroid = 0
				
			
				const GoosDarwin = 0
				
			
				const GoosDragonfly = 0
				
			
				const GoosFreebsd = 0
				
			
				const GoosLinux = 1
				
			
				const GoosNacl = 0
				
			
				const GoosNetbsd = 0
				
			
				const GoosOpenbsd = 0
				
			
				const GoosPlan9 = 0
				
			
				const GoosSolaris = 0
				
			
				const GoosWindows = 0
				
			
				const PtrSize = 4 << (^uintptr(0) >> 63) 
				
			
				const RegSize = 4 << (^Uintreg(0) >> 63) 
				
			
				const SpAlign = 1*(1-GoarchArm64) + 16*GoarchArm64
				
			
				const TheGoarch = `amd64`
				
			
				const TheGoos = `linux`
				
			
		
		
		
		
			
			
			
			type Uintreg uint64