github.com/aloncn/graphics-go@v0.0.1/src/runtime/os_linux_386.go (about)

     1  // Copyright 2009 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  package runtime
     6  
     7  import (
     8  	"runtime/internal/sys"
     9  	"unsafe"
    10  )
    11  
    12  const (
    13  	_AT_NULL    = 0
    14  	_AT_RANDOM  = 25
    15  	_AT_SYSINFO = 32
    16  )
    17  
    18  func sysargs(argc int32, argv **byte) {
    19  	// skip over argv, envv to get to auxv
    20  	n := argc + 1
    21  	for argv_index(argv, n) != nil {
    22  		n++
    23  	}
    24  	n++
    25  	auxv := (*[1 << 28]uint32)(add(unsafe.Pointer(argv), uintptr(n)*sys.PtrSize))
    26  
    27  	for i := 0; auxv[i] != _AT_NULL; i += 2 {
    28  		switch auxv[i] {
    29  		case _AT_RANDOM:
    30  			startupRandomData = (*[16]byte)(unsafe.Pointer(uintptr(auxv[i+1])))[:]
    31  		}
    32  	}
    33  }